From 96919bf34222c0c3f37e1085342b81c63da386c8 Mon Sep 17 00:00:00 2001 From: Kevin Chabowski Date: Thu, 1 Aug 2013 23:01:53 +0200 Subject: Moved BMP code to own file. --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 76a46b1..e55ac71 100644 --- a/Makefile +++ b/Makefile @@ -6,8 +6,9 @@ SFMTFLAGS=-DHAVE_SSE2 -DSFMT_MEXP=19937 OPTIMIZE=-O3 -fno-strict-aliasing #OPTIMIZE=-ggdb -nebula2: nebula2.o config.o render.o statefile.o color.o mutex_helpers.o iniparser/libiniparser.a SFMT/SFMT.c - $(CC) $(CFLAGS) $(OPTIMIZE) $(SFMTFLAGS) $(LIBS) -o nebula2 nebula2.o config.o render.o statefile.o color.o mutex_helpers.o iniparser/libiniparser.a SFMT/SFMT.c +OBJECTS=nebula2.o config.o render.o statefile.o color.o mutex_helpers.o bmp.o +nebula2: $(OBJECTS) iniparser/libiniparser.a SFMT/SFMT.c + $(CC) $(CFLAGS) $(OPTIMIZE) $(SFMTFLAGS) $(LIBS) -o nebula2 $(OBJECTS) iniparser/libiniparser.a SFMT/SFMT.c iniparser/libiniparser.a: make -C iniparser libiniparser.a -- cgit v1.2.3-54-g00ecf