From 8e6850107adb5ca37ed0e9a4500282b2e8743294 Mon Sep 17 00:00:00 2001 From: Kevin Chabowski Date: Sat, 20 Jul 2013 14:01:01 +0200 Subject: Rough structure done. Parallel working should work. --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index d3c357f..238d359 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,9 @@ CC=gcc -CFLAGS=-Wall -Werror -pedantic -std=c99 -static -LIBS=-Liniparser -liniparser +CFLAGS=-Wall -Werror -pedantic +LIBS=-lpthread -nebula2: nebula2.o config.o iniparser/libiniparser.a - $(CC) $(CFLAGS) -o nebula2 nebula2.o config.o iniparser/libiniparser.a +nebula2: nebula2.o config.o render.o statefile.o mutex_helpers.o iniparser/libiniparser.a + $(CC) $(CFLAGS) $(LIBS) -o nebula2 nebula2.o config.o render.o statefile.o mutex_helpers.o iniparser/libiniparser.a iniparser/libiniparser.a: make -C iniparser libiniparser.a @@ -15,4 +15,4 @@ clean: rm -f *.o nuke: clean - rm -f nebula2 \ No newline at end of file + rm -f nebula2 -- cgit v1.2.3-54-g00ecf