Makefile
上传用户:seven77cht
上传日期:2007-01-04
资源大小:486k
文件大小:2k
源码类别:

浏览器

开发平台:

Unix_Linux

  1. # $Header: /home/amb/wwwoffle/RCS/Makefile 2.30 1998/05/30 14:27:44 amb Exp amb $
  2. #
  3. # WWWOFFLE - World Wide Web Offline Explorer - Version 2.4b.
  4. #
  5. # Test Programs Makefile.
  6. #
  7. # Written by Andrew M. Bishop
  8. #
  9. # This file Copyright 1998,99 Andrew M. Bishop
  10. # It may be distributed under the GNU Public License, version 2, or
  11. # any higher version.  See section COPYING of the GNU Public license
  12. # for conditions under which this file may be redistributed.
  13. #
  14. ########
  15. CC=gcc
  16. CFLAGS=-O2 -Wall -g
  17. LD=gcc
  18. LDFLAGS=-g
  19. ########
  20. INCLUDE=
  21. LIBRARY=
  22. COMPILE=$(CC) -c $(CFLAGS)
  23. LINK=$(LD) $(LDFLAGS)
  24. ########
  25. all : wwwoffle-programs test-doc test-msg test-modify
  26. ########
  27. wwwoffle-programs :
  28. cd .. && $(MAKE) programs
  29. ####
  30. TEST_DOC_OBJ=test-doc.o 
  31.      ../http.o ../ftp.o ../finger.o ../ssl.o 
  32.      ../document.o ../html.o ../xml.o ../vrml.o ../javaclass.o 
  33.      ../messages.o ../parse.o ../spool.o 
  34.      ../config.o ../errors.o ../io.o ../misc.o ../proto.o ../sockets.o ../md5.o
  35. test-doc : $(TEST_DOC_OBJ)
  36. $(LINK) $(TEST_DOC_OBJ) -o $@ $(LIBRARY)
  37. ####
  38. TEST_MSG_OBJ=test-msg.o 
  39.      ../messages.o ../parse.o ../spool.o 
  40.      ../config.o ../errors.o ../io.o ../misc.o ../proto-none.o ../sockets.o ../md5.o
  41. test-msg : $(TEST_MSG_OBJ)
  42. $(LINK) $(TEST_MSG_OBJ) -o $@ $(LIBRARY)
  43. ####
  44. TEST_MODIFY_OBJ=test-modify.o 
  45.      ../htmlmodify.o 
  46.      ../messages.o ../parse.o ../spool.o 
  47.      ../config.o ../errors.o ../io.o ../misc.o ../proto-none.o ../sockets.o ../md5.o
  48. test-modify : $(TEST_MODIFY_OBJ)
  49. $(LINK) $(TEST_MODIFY_OBJ) -o $@ $(LIBRARY)
  50. ####
  51. %.o:%.c
  52. $(COMPILE) $< -o $@ $(INCLUDE) -I..
  53. test-doc.o    : test-doc.c    ../wwwoffle.h ../misc.h ../document.h
  54. test-msg.o    : test-msg.c    ../wwwoffle.h ../misc.h
  55. test-modify.o : test-modify.c ../wwwoffle.h ../misc.h
  56. ########
  57. clean :
  58. -rm -f test-doc test-msg test-modify
  59. -rm -f core *.o *~