Last change
on this file was 745, checked in by Silvan Scherrer, 13 years ago |
Samba Server: updated trunk to 3.6.0
|
File size:
340 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.