geom_gate userland utility improvements
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

20 rivejä
351 B

  1. # $FreeBSD$
  2. .PATH: ${.CURDIR:H}/shared
  3. PROG= ggatehttp
  4. MAN= ggatehttp.8
  5. SRCS= ggatehttp.c ggate.c
  6. CFLAGS+= -DMAX_SEND_SIZE=32768
  7. CFLAGS+= -DLIBGEOM
  8. CFLAGS+= -I${.CURDIR:H}/shared
  9. CFLAGS+= -I/usr/local/include
  10. #CFLAGS+= -O0
  11. #CFLAGS+= -fprofile-instr-generate
  12. LDFLAGS+= -L/usr/local/lib
  13. LDADD= -lgeom -lutil -lpthread -lcurl
  14. .include <bsd.prog.mk>