source: trunk/classes/mm-progs/audioconverter/makefile@ 24

Last change on this file since 24 was 4, checked in by stevenhl, 8 years ago

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

File size: 539 bytes
Line 
1# Makefile
2
3include ../../../make.inc
4
5OBJECTS = $(LIBDIR)/message.obj \
6 $(LIBDIR)/helper.obj \
7 $(LIBDIR)/progbars.obj \
8 $(LIBDIR)/sys_funcs.obj
9
10include ../mmprog.inc
11
12
13all: audconv.exe
14
15
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
19
20
21clean:
22 -rm *.exe
23 -rm *.dll
24 -rm *.obj
25 -rm *.res
26 -rm *.ini
27
28cleaner:
29 -rm *.*~
30 -rm *.flc
31
32
33distribution:
34 -cp *.exe ../../dist/bin
Note: See TracBrowser for help on using the repository browser.