diff options
author | tron <tron@openttd.org> | 2005-08-21 10:44:57 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2005-08-21 10:44:57 +0000 |
commit | 4a1f46a99a1bb25eb382eb3dfc6a336d56fb1811 (patch) | |
tree | 658a8bba83a433752f0921d9e9d978c6da8f78a3 /Makefile | |
parent | 1c686229af6e505657573dbc3f7ed18a1e7459e4 (diff) | |
download | openttd-4a1f46a99a1bb25eb382eb3dfc6a336d56fb1811.tar.xz |
(svn r2882) Some fixes for MorphOS (by tokai)
- Don't track dependencies on system headers
- Add an include path
- Silence a warning regarding a bad signal prototype
- Remove executable flag from pictures
- Add proper OTTD icon
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -332,7 +332,7 @@ ifdef OSX BASECFLAGS += -O3 -funroll-loops -fsched-interblock -falign-loops=16 -falign-jumps=16 -falign-functions=16 -falign-jumps-max-skip=15 -falign-loops-max-skip=15 -mdynamic-no-pic -mpowerpc-gpopt -force_cpusubtype_ALL else ifdef MORPHOS -BASECFLAGS += -O2 -noixemul -fstrict-aliasing -fexpensive-optimizations +BASECFLAGS += -I/gg/os-include -O2 -noixemul -fstrict-aliasing -fexpensive-optimizations BASECFLAGS += -mcpu=604 -fno-inline -mstring -mmultiple else BASECFLAGS += -O2 @@ -1002,15 +1002,15 @@ endif .deps/%.d: %.c $(MAKE_CONFIG) table/strings.h endian_target.h @echo '===> Determining dependencies of $<' - $(Q)$(CC) $(CFLAGS) $(CDEFS) -M $< > $@ + $(Q)$(CC) $(CFLAGS) $(CDEFS) -MM $< > $@ .deps/%.d: %.cpp $(MAKE_CONFIG) table/strings.h endian_target.h @echo '===> Determining dependencies of $<' - $(Q)$(CXX) $(CFLAGS) $(CDEFS) -M $< > $@ + $(Q)$(CXX) $(CFLAGS) $(CDEFS) -MM $< > $@ .deps/%.d: %.m $(MAKE_CONFIG) table/strings.h endian_target.h @echo '===> Determining dependencies of $<' - $(Q)$(CC) $(CFLAGS) $(CDEFS) -M $< > $@ + $(Q)$(CC) $(CFLAGS) $(CDEFS) -MM $< > $@ %.o: %.c $(MAKE_CONFIG) |