Rev | Line | |
---|
[2] | 1 | # Makefile
|
---|
| 2 |
|
---|
| 3 | include ../../../make.inc
|
---|
| 4 |
|
---|
[4] | 5 | OBJECTS = $(LIBDIR)/message.obj \
|
---|
| 6 | $(LIBDIR)/helper.obj \
|
---|
| 7 | $(LIBDIR)/progbars.obj \
|
---|
| 8 | $(LIBDIR)/sys_funcs.obj
|
---|
[198] | 9 |
|
---|
| 10 | PMPRINTF = 0
|
---|
| 11 | ifdef PMPRINTF
|
---|
| 12 | LIBS = mmpm2.lib u:/pmprintf/pmprintf.lib
|
---|
| 13 | else
|
---|
| 14 | LIBS = mmpm2.lib
|
---|
| 15 | endif
|
---|
[2] | 16 |
|
---|
[4] | 17 | include ../mmprog.inc
|
---|
[2] | 18 |
|
---|
| 19 |
|
---|
| 20 | all: audconv.exe
|
---|
| 21 |
|
---|
| 22 |
|
---|
[4] | 23 | audconv.exe: audconv.c $(OBJECTS) makefile def.tpl
|
---|
[148] | 24 | cmd /C $(TOOLDIR)/create_def.cmd audconv.def
|
---|
[198] | 25 | $(CC) $(CPPFLAGS) -I$(INC) audconv.c $(OBJECTS) $(LIBS) audconv.def
|
---|
[2] | 26 |
|
---|
| 27 |
|
---|
| 28 | clean:
|
---|
| 29 | -rm *.exe
|
---|
[4] | 30 | -rm *.dll
|
---|
[2] | 31 | -rm *.obj
|
---|
[133] | 32 | -rm *.RES
|
---|
[4] | 33 | -rm *.ini
|
---|
[133] | 34 | -rm *.def
|
---|
[2] | 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.