Cleaned up garbage left behind from my makefile update.
[xboard.git] / winboard / makefile.gcc
1 # WinBoard makefile using gcc\r
2 \r
3 \r
4 PROJ=winboard\r
5 \r
6 \r
7 OBJS=backend.o book.o gamelist.o lists.o moves.o pgntags.o uci.o zippy.o\\r
8  parser.o wbres.o wclipbrd.o wedittags.o wengineo.o wevalgraph.o\\r
9  wgamelist.o whistory.o winboard.o wlayout.o woptions.o wsnap.o\\r
10  wsockerr.o help.o\r
11 \r
12 \r
13 # make compiling less spammy\r
14 compile = @echo "$1"; $(CC) $(CFLAGS) $1\r
15 \r
16 \r
17 # Debugging?\r
18 USE_DEBUG=0\r
19 \r
20 \r
21 # JAWS support?\r
22 JAWS=0\r
23 \r
24 \r
25 # set this to 1 unless you don't mind linking with cygwin1.dll\r
26 USE_MINGW=1\r
27 \r
28 \r
29 # set up for cygwin or not\r
30 ifeq ($(USE_MINGW),1)\r
31 CFCYG = -mno-cygwin\r
32 LFCYG = -mno-cygwin -lmsvcrt\r
33 endif\r
34 \r
35 CC = gcc\r
36 FLEX = "flex.exe" # we need version 2.5.4 or later, cygwin's is 2.5.35\r
37 #      "c:/mingw/mingw32/bin/flex.exe"\r
38 HC="C:/Program Files/Help Workshop/hcrtf" -xn\r
39 DEFS = -D_WIN32_IE=0x0300 -DWIN32\r
40 ifeq ($(JAWS),1)\r
41   DEFS += -DJAWS\r
42 endif\r
43 WARN = -Wall -Wno-char-subscripts -Wno-parentheses\r
44 ARCH =\r
45 ifeq ($(USE_DEBUG),0)\r
46   CFDEBUG = -DNDEBUG\r
47   OPTS = -Os -frename-registers -funit-at-a-time -fstrict-aliasing -fstrength-reduce\r
48 else\r
49   CFDEBUG = -D_DEBUG -DDEBUG -g\r
50 endif\r
51 CF = -c $(WARN) -pipe $(CFDEBUG) $(DEFS) -I. -I..\r
52 CFLAGS = $(CF) $(ARCH) $(OPTS) $(CFCYG)\r
53 LFLAGS = $(LFCYG) $(CFDEBUG) -fpic -s -mwindows -lwsock32 -lwinmm -lcomctl32\r
54 \r
55 all: $(PROJ).exe\r
56 \r
57 \r
58 clean:\r
59         rm -f *~ $(PROJ).exe $(PROJ).err $(PROJ).rbj $(PROJ).RES $(PROJ).res\\r
60         *.sbr *.bsc *.o *.obj *.plg *.opt *.ncb *.debug *.bak *.gid *.GID\\r
61         *.map *.pdb *.tmp $(PROJ).ini\r
62 \r
63 \r
64 # Update the help file if necessary\r
65 $(PROJ).hlp : $(PROJ).rtf\r
66         $(HC) $(PROJ).hpj\r
67         @cat $(PROJ).err\r
68         @mv $(PROJ).hlp tmp.hlp\r
69         @mv tmp.hlp $(PROJ).hlp # these moves to get the case right\r
70 \r
71 \r
72 # Update the resource if necessary\r
73 #wbres.o: $(RESDEPS)\r
74 wbres.o: $(PROJ).rc $(PROJ).h resource.h\r
75         windres $(DEFS) --use-temp-file --include-dir .. $< -O coff -o $@\r
76 \r
77 \r
78 # note: cygwin flex needs m4 package.  cygwin-setup forgets this dependency\r
79 # note2: use mingw flex instead... although I got cygwin's flex working (with m4),\r
80 #        it didn't produce a useable parser.c (1000's of errors)\r
81 parser.c: ../parser.l\r
82         $(FLEX) -oparser.c -L ../parser.l\r
83 \r
84 \r
85 $(PROJ).exe: $(OBJS) $(PROJ).hlp\r
86         $(CC) $(guiflags) $(OBJS) $(LFLAGS) -o $(PROJ).exe\r
87 \r
88 \r
89 winboard.o: winboard.c config.h winboard.h ../common.h ../frontend.h ../backend.h \\r
90         ../moves.h wgamelist.h defaults.h resource.h wclipbrd.h \\r
91         wedittags.h wsockerr.h woptions.h wsnap.h ../lists.h help.h\r
92         $(call compile, $<)\r
93 \r
94 backend.o: ../backend.c config.h ../common.h ../frontend.h ../backend.h \\r
95         ../parser.h ../moves.h ../zippy.h ../backendz.h ../gettext.h ../lists.h\r
96         $(call compile, $<)\r
97 \r
98 parser.o: parser.c config.h ../common.h ../backend.h ../parser.h \\r
99         ../frontend.h ../moves.h ../lists.h\r
100         $(call compile, $<)\r
101 \r
102 moves.o: ../moves.c config.h ../backend.h ../common.h ../parser.h \\r
103         ../moves.h ../lists.h\r
104         $(call compile, $<)\r
105 \r
106 lists.o: ../lists.c config.h ../lists.h ../common.h\r
107         $(call compile, $<)\r
108 \r
109 gamelist.o: ../gamelist.c config.h ../lists.h ../common.h ../frontend.h \\r
110         ../backend.h ../parser.h\r
111         $(call compile, $<)\r
112 \r
113 wclipbrd.o: wclipbrd.c config.h ../common.h ../frontend.h ../backend.h \\r
114         winboard.h resource.h wclipbrd.h ../lists.h\r
115         $(call compile, $<)\r
116 \r
117 wedittags.o: wedittags.c config.h ../common.h winboard.h resource.h ../frontend.h \\r
118         ../backend.h ../lists.h wedittags.h\r
119         $(call compile, $<)\r
120 \r
121 wgamelist.o: wgamelist.c config.h. ../common.h winboard.h resource.h ../frontend.h \\r
122         ../backend.h wgamelist.h ../lists.h\r
123         $(call compile, $<)\r
124 \r
125 woptions.o: woptions.c config.h ../common.h ../frontend.h ../backend.h ../lists.h \\r
126         defaults.h winboard.h resource.h\r
127         $(call compile, $<)\r
128 \r
129 wengineo.o: wengineo.c config.h ../common.h ../frontend.h ../backend.h \\r
130         ../lists.h winboard.h resource.h wsnap.h\r
131         $(call compile, $<)\r
132 \r
133 whistory.o: whistory.c config.h ../common.h ../frontend.h ../backend.h \\r
134         ../lists.h winboard.h resource.h wsnap.h\r
135         $(call compile, $<)\r
136 \r
137 wevalgraph.o: wevalgraph.c config.h ../common.h ../frontend.h ../backend.h \\r
138         ../lists.h winboard.h resource.h wsnap.h\r
139         $(call compile, $<)\r
140 \r
141 wlayout.o: wlayout.c config.h ../common.h winboard.h resource.h\r
142         $(call compile, $<)\r
143 \r
144 wsockerr.o: wsockerr.c wsockerr.h\r
145         $(call compile, $<)\r
146 \r
147 help.o: help.c help.h\r
148         $(call compile, $<)\r
149 \r
150 wsnap.o: wsnap.c wsnap.h\r
151         $(call compile, $<)\r
152 \r
153 pgntags.o: ../pgntags.c config.h ../common.h ../frontend.h ../backend.h \\r
154         ../parser.h ../lists.h\r
155         $(call compile, $<)\r
156 \r
157 zippy.o: ../zippy.c config.h ../common.h ../zippy.h ../frontend.h \\r
158         ../backend.h ../backendz.h ../lists.h\r
159         $(call compile, $<)\r
160 \r
161 book.o: ../book.c ../common.h ../backend.h ../lists.h\r
162         $(call compile, $<)\r
163 \r
164 uci.o: ../uci.c ..//common.h ../backend.h ../frontend.h ../lists.h\r
165         $(call compile, $<)\r
166 \r
167 %.o: %.c\r
168         $(call compile, $<)\r