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

Telnet服务器

开发平台:

Unix_Linux

  1. #$Id: Makefile,v 1.1 2000/01/15 01:45:32 edwardc Exp $
  2. CC        = gcc
  3. BBS_HOME  = ${BBSHOME}
  4. BBSSRC    = ../../src
  5. INCLUDE=-I../../include
  6. CFLAGS   = -O2 -m486 -pipe ${INCLUDE}
  7. # For Solaris, HPUX, IRIX, ... remove above line and use CFLAGS in next line
  8. #CFLAGS   = -O2 -DSYSV ${INCLUDE} -lsocket -lnsl
  9. UTILITY  = fingerd
  10. all: $(UTILITY)
  11. install: $(UTILITY)
  12. cp $(UTILITY) $(BBSHOME)/bin
  13. chown root $(BBSHOME)/bin/fingerd
  14. chmod u+s $(BBSHOME)/bin/fingerd
  15. clean:
  16. rm -fr *.o *.BAK *.log *~ fingerd
  17. fingerd: fingerd.c
  18. $(CC) $(CFLAGS) -o fingerd fingerd.c ${BBSSRC}/modetype.c $(BBSSRC)/record.c