diff options
author | Matthieu Patou <mat@matws.net> | 2010-02-28 22:48:16 +0300 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-03-03 09:22:39 +0100 |
commit | b953c4c67cfc6f0de38526e97eb5fc6031d61c81 (patch) | |
tree | c7c51ff1673da8f87e65cfe11e0091bd7ed4638e /source3/iniparser/test/Makefile | |
parent | 1af5a6d35966ddb5435214a6d1f8ba34be697001 (diff) | |
download | samba-b953c4c67cfc6f0de38526e97eb5fc6031d61c81.tar.gz samba-b953c4c67cfc6f0de38526e97eb5fc6031d61c81.tar.bz2 samba-b953c4c67cfc6f0de38526e97eb5fc6031d61c81.zip |
s3: Move source3/iniparser to lib/iniparser to allow sharing between s3/s4
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/iniparser/test/Makefile')
-rw-r--r-- | source3/iniparser/test/Makefile | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/source3/iniparser/test/Makefile b/source3/iniparser/test/Makefile deleted file mode 100644 index aa8fcb24b5..0000000000 --- a/source3/iniparser/test/Makefile +++ /dev/null @@ -1,24 +0,0 @@ -# -# 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 - - - |