mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
parsing library under the MIT licence.
This is required to have a configuration ini-file for pam_winbind
without using loadparm in the next step.
Guenther
(This used to be commit 6658e0a988
)
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
|
|
|
|
|
|
|