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