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

Telnet服务器

开发平台:

Unix_Linux

  1. #
  2. # libBBS (libbbs.a) version 1.0 for FirebirdBBS Series
  3. # a part of SEEDNetBBS generation 1
  4. #
  5. # $Id: Makefile,v 1.1 2000/01/15 01:45:25 edwardc Exp $
  6. #
  7. #############################################################
  8. ###        You needn't modify the following stuff      ######
  9. #############################################################
  10. LIBNAME  = libBBS.a
  11. GARBAGE  = a.out core out.* *.BAK DEAD*
  12. CFILE  = string.c html.c mmdecode.c fileio.c dlm.c
  13. OBJS  = string.o html.o mmdecode.o fileio.o dlm.o
  14. .SUFFIXES: .o .c
  15. .c.o:   ;   $(CC) -s $(CFLAGS) -Wunused -c $*.c
  16. #--------------------- Dependency starts here -------------------
  17. all: $(OBJS)
  18. ar rv ../$(LIBNAME) $(OBJS)
  19. ranlib ../$(LIBNAME)
  20. tag:
  21. ctags $(CFILE)
  22. clean: /tmp
  23. @echo --- Cleaning Garbage ... ---
  24. -rm -fr $(GARBAGE) *.o *~
  25. cleanall: clean
  26. @echo --- Cleanning Grabage with $(LIBNAME) ---
  27. -rm -fr $(LIBNAME) ../$(LIBNAME)
  28. install:
  29. @echo --- lib: skip ---