1include Makefile.$(OS) 2 3test-compile: 4 @$(CC) $(CFLAGS) $(LDAPINC) -o test-lber.o -c test-lber.c 5 6test-link: 7 @$(CC) $(CFLAGS) $(LDAPLIB) -o test-lber test-lber.o -lldap $(LDAPLBER) 8 9clean: 10 @rm -f test-lber.o test-lber 11 12