2 # This is a simplified Makefile for use in Tk distributions. Before using
3 # it to compile Tk, you may wish to reset some of the following variables:
5 # TCL_DIR - Name of directory holding tcl.h and tcl.a.
6 # XLIB - Name of archive containing Xlib binaries.
9 # You may also wish to add some of the following switches to the CFLAGS
12 # -DX11R3 Causes code that depends on R4 facilities not to
13 # be compiled. I haven't tested Tk with R3 in quite
14 # a while, so this switch may not be enough to
15 # generate a working R3 version of Tk. Furthermore,
16 # use of this switch will disable some of the facilities
17 # of Tk related to window managers.
18 # -DNO_PROTOTYPE Turns off ANSI-style procedure prototypes and the
19 # corresponding compile-time checks. Without this
20 # defininition, prototypes will be turned on if the
21 # compiler supports ANSI C by defining __STDC__.
22 # -DTK_LIBRARY=\"dir\" Arranges for dir, which must be the name of a
23 # directory, to be the library directory for Tk scripts.
24 # This value gets put into the variable $tk_library
25 # when a new application is created. The library
26 # defaults to /usr/local/lib/tk, so you don't need the
27 # switch unless your library is in a non-standard place.
31 CFLAGS = -I. -I$(TCL_DIR) -O2 -DTK_VERSION=\"2.3\" -DUSE_XPM3 -I$(XPM_DIR)
34 #CFLAGS = -I. -I$(TCL_DIR) -g -DTK_VERSION=\"2.3\" -DUSE_XPM3 -I$(XPM_DIR)
40 #LIBS = libtk.a $(TCL_DIR)/libtcl.a $(XPM_DIR)/libxpm.a
41 LIBS = libtk.a $(TCL_DIR)/libtcl.a $(XPM_DIR)/libxpm.a
42 #LINKS = $(LIBS) -lsocket -lnsl
45 WIDGOBJS = tkbutton.o tkentry.o tkframe.o tklist.o \
46 tkmenu.o tkmnbut.o tkmsg.o tkscale.o \
49 CANVOBJS = tkcanvas.o tkcvarc.o tkcvbmap.o tkcvline.o \
50 tkcvpoly.o tkcvtext.o tkcvwind.o tkrectov.o \
53 TEXTOBJS = tktext.o tktxbtre.o tktxdisp.o tktxidx.o tktxtag.o
55 OBJS = tk3d.o tkargv.o tkatom.o tkbind.o tkbitmap.o \
56 tkcmds.o tkcolor.o tkconfig.o tkcursor.o tkerror.o \
57 tkevent.o tkfont.o tkget.o tkgc.o tkgeo.o tkgrab.o \
58 tkoption.o tkpack.o tkpixmap.o tkplace.o tkpresrv.o \
59 tkselect.o tksend.o tkshare.o tkwindow.o tkwm.o tkrawtcp.o \
60 $(WIDGOBJS) $(CANVOBJS) $(TEXTOBJS)
62 WIDGSRCS = tkbutton.c tkentry.c tkframe.c tklist.c \
63 tkmenu.c tkmnbut.c tkmessage.c tkscale.c \
64 tkscrbar.c tktext.c tktxbtre.c tktxdisp.c \
67 CANVSRCS = tkcanvas.c tkcvarc.c tkcvbmap.c tkcvline.c \
68 tkcvpoly.c tkcvtext.c tkcvwind.c tkrectov.c \
71 TEXTSRCS = tktext.c tktxbtre.c tktxdisp.c tktxidx.c tktxtag.c
73 SRCS = tk3d.c tkargv.c tkatom.c tkbind.c tkbitmap.c \
74 tkcmds.c tkcolor.c tkconfig.c tkcursor.c tkerror.c \
75 tkevent.c tkfont.c tkget.c tkgc.c tkgeo.c tkgrab.c \
76 tkoption.c tkpack.c tkplace.c tkpresrv.c tkselect.c \
77 tksend.c tkshare.c tkwindow.c tkwm.c tkrawtcp.c $(widgsrcs) \
78 $(CANVSRCS) $(TEXTSRCS)
83 $(CC) $(CFLAGS) main.o $(LINKS) $(XLIB) -lm -o wish
91 cd $(TCL_DIR); make libtcl.a
95 rm -f $(OBJS) main.o libtk.a wish *~
97 $(OBJS): tk.h tkint.h tkconfig.h
98 $(WIDGOBJS): default.h
99 $(CANVOBJS): default.h tkcanvas.h