Line | |
---|
1 | # Makefile
|
---|
2 |
|
---|
3 | include ../../../make.inc
|
---|
4 |
|
---|
5 | OBJECTS = $(LIBDIR)/message.obj \
|
---|
6 | $(LIBDIR)/helper.obj \
|
---|
7 | $(LIBDIR)/progbars.obj \
|
---|
8 | $(LIBDIR)/sys_funcs.obj
|
---|
9 |
|
---|
10 | PMPRINTF = 0
|
---|
11 | ifdef PMPRINTF
|
---|
12 | LIBS = mmpm2.lib u:/pmprintf/pmprintf.lib
|
---|
13 | else
|
---|
14 | LIBS = mmpm2.lib
|
---|
15 | endif
|
---|
16 |
|
---|
17 | include ../mmprog.inc
|
---|
18 |
|
---|
19 |
|
---|
20 | all: audconv.exe
|
---|
21 |
|
---|
22 |
|
---|
23 | audconv.exe: audconv.c $(OBJECTS) makefile def.tpl
|
---|
24 | cmd /C $(TOOLDIR)/create_def.cmd audconv.def
|
---|
25 | $(CC) $(CPPFLAGS) -I$(INC) audconv.c $(OBJECTS) $(LIBS) audconv.def
|
---|
26 |
|
---|
27 |
|
---|
28 | clean:
|
---|
29 | -rm *.exe
|
---|
30 | -rm *.dll
|
---|
31 | -rm *.obj
|
---|
32 | -rm *.RES
|
---|
33 | -rm *.ini
|
---|
34 | -rm *.def
|
---|
35 |
|
---|
36 | cleaner:
|
---|
37 | -rm *.*~
|
---|
38 | -rm *.flc
|
---|
39 |
|
---|
40 |
|
---|
41 | distribution:
|
---|
42 | -cp *.exe ../../dist/bin
|
---|
Note:
See
TracBrowser
for help on using the repository browser.