# # Makefile for fobbit voip-blaster directory server # # Written by: David M. Stanhope # # Must adjust install line for location of web server # BINS = vserver vs_cgi vslave all: $(BINS) vserver: vserver.o timestamp.o $(CC) -o vserver vserver.o timestamp.o vserver.o: vserver.c vars.inc vslave: vslave.o timestamp.o $(CC) -o vslave vslave.o timestamp.o vs_cgi: vs_cgi.o timestamp.o $(CC) -o vs_cgi vs_cgi.o timestamp.o clean: /bin/rm -f *.o $(BINS) install: cp vs_cgi /usr/pkg/share/ht*/cgi-bin # # The End! #