|
Last change
on this file since 143 was 133, checked in by gyoung, 2 years ago |
|
Merge Lar's 2.9 branch into the trunk
|
|
File size:
553 bytes
|
| 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 | include ../mmprog.inc
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 | all: audconv.exe
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 | audconv.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) mmpm2.lib audconv.def
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 | clean:
|
|---|
| 22 | -rm *.exe
|
|---|
| 23 | -rm *.dll
|
|---|
| 24 | -rm *.obj
|
|---|
| 25 | -rm *.RES
|
|---|
| 26 | -rm *.ini
|
|---|
| 27 | -rm *.def
|
|---|
| 28 |
|
|---|
| 29 | cleaner:
|
|---|
| 30 | -rm *.*~
|
|---|
| 31 | -rm *.flc
|
|---|
| 32 |
|
|---|
| 33 |
|
|---|
| 34 | distribution:
|
|---|
| 35 | -cp *.exe ../../dist/bin
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.