home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Web / Utilities / wwwcount-2.3 / utils / makefile.wnt < prev    next >
Encoding:
Makefile  |  1996-05-02  |  730 b   |  32 lines

  1. #######
  2. #######
  3. # for NT, VC++ 4.0
  4. # Makefiel for mkstrip, program which makes a strip of image from
  5. # combining several images
  6. # muquit@semcor.com
  7. # 03/24/96
  8. #######
  9. INCLUDES= -I. -I.. -I../combine
  10. CC= cl
  11. DEFS=  -DSTDC_HEADERS=1 -DHAVE_STRING_H=1 -DHAVE_FCNTL_H=1 -DHAVE_MALLOC_H=1
  12. LIBS=
  13. ##
  14. # do not undefine ACESS_AUTH
  15. ##
  16. ACCESS_AUTH= -DACCESS_AUTH=1
  17. DEFINES= $(INCLUDES) $(DEFS) $(ACCESS_AUTH)
  18. CFLAGS= $(cvars) $(cdebug) -nologo -G4  -DSYS_WIN32 $(DEFINES)
  19. #CFLAGS= $(cvars) $(cdebug) -nologo /W4  $(DEFINES)
  20.  
  21. SRCS= mkstrip.c
  22. OBJS= mkstrip.obj 
  23.  
  24. .c.obj:
  25.     cl $(CFLAGS) -c $< -Fo$@
  26.  
  27. mkstrip.exe: $(OBJS)
  28.     link $(OBJS) $(ldebug) $(conlflags) $(conlibs) /OUT:mkstrip.exe ../combine/combine.lib
  29.     
  30. clean:
  31.     del $(OBJS) mkstrip.exe
  32.