Makefile.in
上传用户:minyiyu
上传日期:2018-12-24
资源大小:864k
文件大小:1k
源码类别:

Telnet服务器

开发平台:

Unix_Linux

  1. #  Makefile for local utility tool kit
  2. #  $Id: Makefile.in,v 1.1 2000/01/15 01:45:39 edwardc Exp $
  3. #
  4. CC       = @CC@
  5. CFLAGS   = @CFLAGS@ -I../../include
  6. BBSHOME  = @BBS_HOME@
  7. UTILITY  = account averun bbstop bbspop3d bfinger birthday horoscope 
  8.    http-finger newacct poststat remake usage showuser
  9. .c.o:   ;   $(CC) $(CFLAGS) -c $*.c
  10. all: $(UTILITY)
  11. install: $(UTILITY)
  12. cp $(UTILITY) $(BBSHOME)/bin
  13. clean:
  14. rm -fr *.o *.BAK *.log $(UTILITY) *core* DEAD* *~
  15. bbspop3d:
  16. $(CC) $(CFLAGS) -o bbspop3d bbspop3d.c @libCRYPT@
  17. bfinger: bfinger.c ../../src/modetype.c 
  18. $(CC) $(CFLAGS) -o bfinger bfinger.c ../../src/modetype.c
  19. http-finger: http-finger.c ../../src/modetype.c 
  20. $(CC) $(CFLAGS) -o http-finger http-finger.c ../../src/modetype.c
  21. remake: remake.c ../../src/record.c
  22. $(CC) $(CFLAGS) -o remake remake.c ../../src/record.c
  23. usage: usage.c ../../src/record.c
  24. $(CC) $(CFLAGS) -o usage usage.c ../../src/record.c