diff options
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/Makefile b/test/Makefile new file mode 100644 index 0000000..aa8fcb2 --- /dev/null +++ b/test/Makefile @@ -0,0 +1,24 @@ +# +# iniparser tests Makefile +# + +CC = gcc +CFLAGS = -g -I../src +LFLAGS = -L.. -liniparser +AR = ar +ARFLAGS = rcv +RM = rm -f + + +default: all + +all: iniexample + +iniexample: iniexample.c + $(CC) $(CFLAGS) -o iniexample iniexample.c -I../src -L.. -liniparser + +clean veryclean: + $(RM) iniexample example.ini + + + |