mirror of
https://github.com/samba-team/samba.git
synced 2025-01-28 17:47:29 +03:00
b953c4c67c
Signed-off-by: Stefan Metzmacher <metze@samba.org>
25 lines
316 B
Makefile
25 lines
316 B
Makefile
#
|
|
# 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
|
|
|
|
|
|
|