source: branches/samba-3.3.x/source/iniparser/test/Makefile

Last change on this file was 206, checked in by Herwig Bauernfeind, 16 years ago

Import Samba 3.3 branch at 3.0.0 level (psmedley's port)

File size: 316 bytes
Line 
1#
2# iniparser tests Makefile
3#
4
5CC = gcc
6CFLAGS = -g -I../src
7LFLAGS = -L.. -liniparser
8AR = ar
9ARFLAGS = rcv
10RM = rm -f
11
12
13default: all
14
15all: iniexample
16
17iniexample: iniexample.c
18 $(CC) $(CFLAGS) -o iniexample iniexample.c -I../src -L.. -liniparser
19
20clean veryclean:
21 $(RM) iniexample example.ini
22
23
24
Note: See TracBrowser for help on using the repository browser.