home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Web / Utilities / wwwcount-2.3 / utils / Makefile.in next >
Encoding:
Makefile  |  1996-04-07  |  492 b   |  27 lines

  1. #######
  2. # for unix
  3. # Makefile template for mkstrip, program which makes a strip of image from
  4. # combining several images
  5. #######
  6. INCLUDES= -I. -I../combine -I..
  7. CC= @CC@
  8. DEFS= @DEFS@
  9. DEFINES= $(INCLUDES) $(DEFS) -D__USE_FIXED_PROTOTYPES_
  10. CFLAGS= -O $(DEFINES) 
  11.  
  12. BINARY=mkstrip
  13. LIBS= ../combine/libCombine.a
  14.  
  15. OBJS= mkstrip.o
  16.  
  17. all: mkstrip
  18.  
  19. mkstrip: $(OBJS)
  20.     $(CC) $(CFLAGS) -o $(BINARY) $(OBJS) $(LIBS)
  21.  
  22. mkstrip.o: mkstrip.c
  23.     $(CC) $(CFLAGS) -c mkstrip.c
  24.  
  25. clean:
  26.     rm -f mkstrip.o mkstrip core
  27.