diff options
author | Pixel <pixel@nobis-crew.org> | 2011-10-07 16:11:02 -0700 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2011-10-07 16:11:02 -0700 |
commit | 4f7b984f9f848ba6adae2040c520a97bb5c0e354 (patch) | |
tree | e12f6fa8a2d96c1af894bcaa6833a4a3d13108d1 /Makefile | |
parent | 50c6ae8c0461f12bc42d2d8a0344efd7dc186f2c (diff) |
Simplifying Makefile, by offloading defines to config files, and using -imacros to load them.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -20,7 +20,7 @@ LDFLAGS += -g endif ifeq ($(SYSTEM),Darwin) - LIBCORO_CFLAGS = -DCORO_SJLJ + CONFIG_H = darwin-config.h ARCH_FLAGS = -arch i386 LIBS = -liconv LD = g++ -arch i386 @@ -33,7 +33,7 @@ ifeq ($(SYSTEM),Darwin) AS = i686-apple-darwin-as -arch i386 endif else - LIBCORO_CFLAGS = -DCORO_ASM + CONFIG_H = linux-config.h ARCH_FLAGS = -march=i686 -m32 ASFLAGS = -march=i686 --32 STRIP = strip --strip-unneeded @@ -41,7 +41,7 @@ endif INCLUDES = -Iincludes -Ilibcoro -CPPFLAGS_NO_ARCH += $(INCLUDES) -DSTDC_HEADERS -fexceptions -DWORDS_LITTLEENDIAN $(HAVES) $(LIBCORO_CFLAGS) -Wno-deprecated -D_FILE_OFFSET_BITS=64 +CPPFLAGS_NO_ARCH += $(INCLUDES) -fexceptions -Wno-deprecated -imacros $(CONFIG_H) CPPFLAGS += $(CPPFLAGS_NO_ARCH) $(ARCH_FLAGS) LDFLAGS += $(ARCH_FLAGS) $(LIBS) |