

IDE_BLIND_INCLUDES = -I- -I./ -Iinclude -ILDAPRootDSE-dir/Includes -ILDAPRootDSE-dir/Includes -ILDAPRootDSE-dir/Sources -ILDAPRootDSE-dir/Sources


CC = gcc

CFLAGS = $(IDE_BLIND_CFLAGS) $(INCLUDES) $(CWARNFLAGS) $(CDEBUGFLAGS) $(COPTIMIZEFLAGS) $(CLANGFLAGS) $(CCODEFLAGS)

INCLUDES = -I/usr/local/netscape/4/include

SOURCESDIR = LDAPRootDSE-dir/Sources

SOURCEFILE = $(SOURCESDIR)/rootdse.c

BINFILE = LDAPRootDSE

CWARNFLAGS = 

CDEBUGFLAGS = -g

COPTIMIZEFLAGS = 

CLANGFLAGS = 

CCODEFLAGS = 

IDE_BLIND_CFLAGS = -I./ -Iinclude -ILDAPRootDSE-dir/Includes -ILDAPRootDSE-dir/Includes -ILDAPRootDSE-dir/Sources -ILDAPRootDSE-dir/Sources

LDOPTIONS = $(IDE_BLIND_LDOPTIONS) $(LDFLAGS)

LDFLAGS = -L/usr/local/netscape/4/lib/ -lldapssl41

IDE_BLIND_LDOPTIONS = -L./

all:
	$(CC) -o $(BINFILE) $(SOURCEFILE) $(LDOPTIONS) $(LOCAL_LIBRARIES)

