Makefile revision 16783
1PROG = fetch
2SRCS = main.c
3
4CFLAGS+=	-Wall
5
6DPADD=  ${LIBFTPIO}
7LDADD=  -lftpio
8
9.include <bsd.prog.mk>
10