gnumakefile
Upload User: caisha3
Upload Date: 2013-09-21
Package Size: 208739k
Code Size: 2k
Category:

Windows Develop

Development Platform:

Visual C++

  1. PRODUCT = SITE
  2. VOBS=/vobs
  3. CUSTOM_RULES = ${VOBS}/ie4/trident.template
  4. WIN32_WINNT_VERSION=0x0400
  5. WIN32_WIN95_VERSION=0x0400
  6. SOURCES =  
  7.     jcomapi.c     
  8.     jdapimin.c    
  9.     jdapistd.c    
  10.     jdcoefct.c    
  11.     jdcolor.c     
  12.     jddctmgr.c    
  13.     jdhuff.c      
  14.     jdinput.c     
  15.     jdmainct.c    
  16.     jdmarker.c    
  17.     jdmaster.c    
  18.     jdmerge.c     
  19.     jdphuff.c     
  20.     jdpostct.c    
  21.     jdsample.c    
  22.     jdtrans.c     
  23.     jidctflt.c    
  24.     jidctfst.c    
  25.     jidctint.c    
  26.     jidctred.c    
  27.     jmemmgr.c     
  28.     jmemnobs.c    
  29.     jquant1.c     
  30.     jquant2.c     
  31.     jutils.c      
  32.     miint.c       
  33.     mifst.c       
  34.     mfint.c       
  35.     mffst.c       
  36.     piint.c       
  37.     pifst.c       
  38.     pfint.c       
  39.     pffst.c
  40. WLIB = jpglib6a
  41. LIB = lib${WLIB}.a # target static library
  42. LIBOBJS := ${SOURCES:%.C=%.o}
  43. LIBOBJS := ${LIBOBJS:%.cpp=%.o}
  44. LIBOBJS := ${LIBOBJS:%.cxx=%.o}
  45. LIBOBJS := ${LIBOBJS:%.c=%.o}
  46. SRCS=${SOURCES}
  47. ## COMPILE_OPTION can have the values: debug, optimized
  48. COMPILE_OPTION = debug
  49. ## you may define the following variables
  50. ## RUN.dir      : the directory where you want the executables to go
  51. ## PROJECT_CFLAGS   : additional compilation flags for C compiler
  52. ## PROJECT_CCPPFLAGS: additional compilation flags for C++ compiler
  53. ## PROJECT_LDFLAGS  : additional link flags (maybe specifying DLLs)
  54. ## MWINIT_DEFINES : list of -D<symbols> used to initialize
  55. ##        Mainwin in certain specific ways 
  56. ## MWLOCALES: list of country codes corresponding to the
  57. ##        resources you have prepared in the res subdirectory
  58. ## 
  59. include $(MWHOME)/make.rules.simple