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

Telnet服务器

开发平台:

Unix_Linux

  1. #$Id: Makefile,v 1.1 2000/01/15 01:45:33 edwardc Exp $
  2. CC        = gcc
  3. BBSSRC    = ../../src
  4. INCLUDE   = -I../../include
  5. mCFLAGS   = $(CFLAGS) ${INCLUDE}
  6. all: gopherd
  7. install: gopherd
  8. cp gopherd $(BBSHOME)/bin
  9. chown root:bbs $(BBSHOME)/bin/gopherd
  10. chmod u+s $(BBSHOME)/bin/gopherd
  11. clean:
  12. rm -fr *.o *.BAK *.log *~ gopherd
  13. gopherd: gopherd.c
  14. $(CC) $(mCFLAGS) -o gopherd gopherd.c