Makefile 388 B

1234567891011121314151617181920212223242526
  1. SRC= php_auth_ldap.c
  2. OBJ= $(SRC:.c=.o)
  3. NAME= auth_ldap.so
  4. CFLAGS+=-g3 -I/usr/include/php/ -I/usr/include/php/main/ -I/usr/include/php/ext/mysqlnd/ -I/usr/include/php/Zend -I/usr/include/php/TSRM/ -fPIC
  5. LDFLAGS=-g3
  6. $(NAME): all
  7. all: $(OBJ)
  8. $(CC) $(OBJ) -o $(NAME) -shared $(LDFLAGS)
  9. clean:
  10. $(RM) $(OBJ)
  11. fclean: clean
  12. $(RM) $(NAME)
  13. re: fclean all
  14. .PHONY: all clean fclean re