diff options
Diffstat (limited to 'userland/test')
-rw-r--r-- | userland/test/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/userland/test/Makefile b/userland/test/Makefile index 0e3b495..76cf844 100644 --- a/userland/test/Makefile +++ b/userland/test/Makefile @@ -1,12 +1,10 @@ CC="i686-sb-gcc" CFLAGS = -O2 -Wall -Wextra -pedantic -Wimplicit-fallthrough -static -LIB=-L../json -L../json/hashmap -ljson -lhashmap -INC=-I../json/ BINS=test all: $(BINS) test.o: test.c - $(CC) $(CFLAGS) $(INC) $(LIB) -o $@ -c $< + $(CC) $(CFLAGS) -o $@ -c $< test: test.o $(CC) $(CFLAGS) -o $@ $^ $(LIB) |