Makefile 240 B

123456789101112131415
  1. # Sitemap Makefile
  2. .PATH: ${.CURDIR}/../
  3. PROG= sitemap
  4. SRCS= sitemap_cgi.c filehelper.c buffer.c sitemap.c
  5. CFLAGS+= -I"${.CURDIR}/../"
  6. LDADD+= -lutil -lz
  7. LDSTATIC= ${STATIC}
  8. NOMAN= 1
  9. .include <cmsconfig.mk>
  10. .include <bsd.prog.mk>