Ignore:
Timestamp:
Jul 13, 2017, 5:17:57 AM (8 years ago)
Author:
stevenhl
Message:

Import modifications from cwmm-0_2_9-work-01_10_2006.zip dated 2006-08-27

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/classes/mm-progs/audioconverter/makefile

    r2 r4  
    33include ../../../make.inc
    44
    5 CC           = gcc
    6 LIB_DIR      = $d:/emx/lib
    7 #CPPFLAGS     = -Ge- /Gm+ -G4 -Gl  /O+ -Oc+ -Ol
    8 #CPPFLAGS     = -O -Zomf -Zcrtdll -s
    9 CPPFLAGS     = -O -Wall -Zomf -Zmt -Zsys -s
     5OBJECTS =       $(LIBDIR)/message.obj \
     6                $(LIBDIR)/helper.obj \
     7                $(LIBDIR)/progbars.obj \
     8                $(LIBDIR)/sys_funcs.obj
    109
    11 INC             = ../include -I ../../../classes/inc -I ../../../common_functions/include
    12 DEFS         =
    13 PROGS        = 
    14 ODIR            = .
    15 CPPDIR  = .
    16 LIBDIR  =       ../lib
    17 OBJECTS =       $(LIBDIR)/message.obj $(LIBDIR)/helper.obj $(LIBDIR)/progbars.obj $(LIBDIR)/sys_funcs.obj
     10include ../mmprog.inc
    1811
    1912
    2013all:    audconv.exe
    2114
    22 $(LIBDIR)/%.obj:        $(COMMONSRC)/%.c
    23         gcc -c -o$@ -Zomf -I$(INC) $< 
    2415
    25 audconv.exe:    audconv.c $(OBJECTS)
    26         gcc $(CPPFLAGS) -I$(INC) audconv.c $(OBJECTS) -los2me audconv.def
     16audconv.exe:    audconv.c $(OBJECTS) makefile def.tpl
     17        cmd /C $(TOOLDIR)\create_MMPROG_def.cmd audconv.def
     18        $(CC) $(CPPFLAGS) -I$(INC) audconv.c $(OBJECTS) -los2me audconv.def
    2719
    2820
    2921clean:
    3022        -rm *.exe
     23        -rm *.dll
    3124        -rm *.obj
     25        -rm *.res
     26        -rm *.ini
    3227
    3328cleaner:
     
    3833distribution:
    3934        -cp *.exe ../../dist/bin
    40        
    41 
Note: See TracChangeset for help on using the changeset viewer.