(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
This commit is contained in:
8
Makefile
8
Makefile
@@ -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)
|
||||
|
Reference in New Issue
Block a user