libsheepy

C lib for handling text files, strings and json like data structure with an object oriented system
git clone https://spartatek.se/git/libsheepy.git
Log | Files | Refs | README | LICENSE

Makefile (284B)


      1 # I am not very good at Makefiles.
      2 
      3 CFLAGS += -Wall -g
      4 INCLUDES = -I.
      5 
      6 all: bin/CuTestTest
      7 
      8 bin:
      9 	mkdir -p $@
     10 
     11 test: bin/CuTestTest
     12 	@bin/CuTestTest
     13 
     14 bin/CuTestTest: AllTests.c CuTestTest.c CuTest.c | bin
     15 	$(CC) $(CFLAGS) $(INCLUDES) -Wno-address -lm -o $@ $^
     16 
     17 clean:
     18 	@rm -rf *~ bin