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

Telnet服务器

开发平台:

Unix_Linux

  1. # Makefile of bbsinnd for Firebird BBS 3.0
  2. #
  3. # $Id: Makefile,v 1.1 2000/01/15 01:45:39 edwardc Exp $
  4. DATE = parsedate.o timefmt.o
  5. OBJ  = bbspost.o ${BBS_SRC}/src/record.c
  6. all: parsedate bbspost fillperl
  7. .c.o:   ;   $(CC) ${CFLAGS} -I${BBS_SRC}/include -c $*.c
  8. parsedate: ${DATE}
  9. ${CC} -o parsedate ${DATE}
  10. bbspost: ${OBJ}
  11. ${CC} -I${BBS_SRC}/include -o bbspost ${OBJ} -lcrypt
  12. clean:
  13. rm -rf *.o *~ bbspost parsedate
  14. rm -fr bbslib.pl innbbslib.pl rfc931.pl tcp.pl mailpost bntplink
  15. rm -fr expirepost in.bntpd inntobbs
  16. fillperl:
  17. @echo " *** note: expirepost has been replaced by other program in ~bbs/bin  ***"
  18. @echo " *** called "expire", and it's 100% settings and usage compatiables ***"
  19. rm -fr bbslib.pl innbbslib.pl rfc931.pl tcp.pl mailpost bntplink
  20. rm -fr in.bntpd inntobbs
  21. sed -e "s:@PERL@:${PERL}:" bbslib.pl.in > bbslib.pl
  22. sed -e "s:@PERL@:${PERL}:" innbbslib.pl.in > innbbslib.pl
  23. sed -e "s:@PERL@:${PERL}:" rfc931.pl.in > rfc931.pl
  24. sed -e "s:@PERL@:${PERL}:" tcp.pl.in > tcp.pl
  25. sed -e "s:@PERL@:${PERL}:" mailpost.in > mailpost
  26. sed -e "s:@PERL@:${PERL}:" bntplink.in > bntplink
  27. # sed -e "s:@PERL@:${PERL}:" expirepost.in > expirepost
  28. sed -e "s:@PERL@:${PERL}:" in.bntpd.in > in.bntpd
  29. sed -e "s:@PERL@:${PERL}:" inntobbs.in > inntobbs