home *** CD-ROM | disk | FTP | other *** search
/ ftp.muug.mb.ca / 2014.06.ftp.muug.mb.ca.tar / ftp.muug.mb.ca / pub / src / gopher / gopher1.01 / mindexd / Makefile < prev    next >
Makefile  |  1992-04-08  |  383b  |  28 lines

  1. include ../Makefile.config
  2.  
  3. OBJS    = error.o globals.o mindexd.o daemon.o
  4.  
  5. #
  6. # NeXT needs -bsd
  7. #
  8.  
  9. CCFLAGS    = -g
  10. LIBS    = $(SERVERLIBS)
  11. TARGET    = mindexd
  12.  
  13. all : $(TARGET)
  14.  
  15. .c.o:
  16.     $(CC) $(CCFLAGS) -c $<
  17.  
  18. mindexd.h : mindexd.c
  19.  
  20. $(TARGET) : $(OBJS)
  21.     $(CC) $(CCFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
  22.  
  23. clean:
  24.     rm -f $(OBJS) *.out *~ core
  25.  
  26. tar:
  27.     tar cf chronos`date +%m_%d`.tar *.c *.h Makefile
  28.