mirror of
https://github.com/samba-team/samba.git
synced 2025-01-26 10:04:02 +03:00
f340b2fa36
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 6658e0a9886ee5a361361bc9b26c136ec91aea72)
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
|
|
|
|
|
|
|