home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Web / Utilities / wwwcount-2.3 / Makefile.in < prev    next >
Encoding:
Makefile  |  1996-05-02  |  1.1 KB  |  57 lines

  1. #####
  2. # Makefile template for Count 2.0
  3. # This file is used by the configure program to generate Makefile
  4. # by Muhammad A Muquit
  5. # 04/10/95, muquit@semcor.com
  6. # http://www.semcor.com/~muquit/
  7. # updated for Count 1.2 06/06/95, --muquit
  8. # updated for Count 1.5 09/17/95, -- muquit
  9. # updated for Count 2.0 11/25/95, -- muquit
  10. #
  11. # $Revision: 2.3 $
  12. # $Date: 1996/05/03 02:20:22 $
  13. #
  14. #####
  15.  
  16. INCLUDES= -I. -I./combine
  17. CC= @CC@
  18. DEFS= @DEFS@
  19. LIBS= @LIBS@ 
  20. ##
  21. # do not undefine ACESS_AUTH
  22. ##
  23. ACCESS_AUTH= -DACCESS_AUTH=1
  24. DEFINES= $(INCLUDES) $(DEFS) $(ACCESS_AUTH) -D__USE_FIXED_PROTOTYPES__
  25. CFLAGS= -O $(DEFINES) -DSYS_UNIX=1 -DDEBUG=1
  26.  
  27.  
  28. OBJS= main.o parse.o strimage.o
  29.  
  30. all:    libCombine.a Count
  31.  
  32. #
  33. # make the GIF combining library
  34. #
  35. libCombine.a:
  36.     (cd combine; make)
  37. #
  38. Count:    $(OBJS)
  39.         $(CC) $(CFLAGS) -o Count.cgi $(OBJS) ./combine/libCombine.a
  40.  
  41. main.o:    main.c
  42.         $(CC) $(CFLAGS) -c main.c
  43.  
  44. parse.o:    parse.c
  45.         $(CC) $(CFLAGS) -c parse.c
  46.  
  47. strimage.o:    strimage.c
  48.         $(CC) $(CFLAGS) -c strimage.c
  49.  
  50. main.o:    count.h config.h
  51. parse.o:    count.h config.h
  52.  
  53. clean:
  54.     (cd combine; make clean)
  55.     rm -f $(OBJS) Count.cgi core
  56.     rm -f config.cache config.log config.status
  57.