Mercurial > hg > early-roguelike
comparison rogue5/Makefile.in @ 232:bac2c81fec78
Makefiles: don't rely on built-in implicit rules.
Not all make implementations will use CPPFLAGS when compiling C files.
author | John "Elwin" Edwards |
---|---|
date | Tue, 08 Mar 2016 19:45:41 -0500 |
parents | 4960be2c8f3e |
children | 0b3d1b38998f |
comparison
equal
deleted
inserted
replaced
231:455464db5800 | 232:bac2c81fec78 |
---|---|
121 AFILES = configure Makefile.in configure.ac config.h.in config.sub config.guess \ | 121 AFILES = configure Makefile.in configure.ac config.h.in config.sub config.guess \ |
122 install-sh rogue.6.in rogue.me.in rogue.html.in | 122 install-sh rogue.6.in rogue.me.in rogue.html.in |
123 MISC = Makefile.std LICENSE.TXT rogue54.sln rogue54.vcproj rogue.spec \ | 123 MISC = Makefile.std LICENSE.TXT rogue54.sln rogue54.vcproj rogue.spec \ |
124 rogue.png rogue.desktop | 124 rogue.png rogue.desktop |
125 | 125 |
126 .SUFFIXES: .obj | 126 .SUFFIXES: .obj .o .c |
127 | 127 |
128 .c.obj: | 128 .c.obj: |
129 $(CC) $(CFLAGS) $(CPPFLAGS) /c $*.c | 129 $(CC) $(CFLAGS) $(CPPFLAGS) /c $*.c |
130 | 130 |
131 .c.o: | 131 .c.o: |