|
Last change
on this file since 25 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:
698 bytes
|
| Line | |
|---|
| 1 | # Makefile
|
|---|
| 2 |
|
|---|
| 3 | include ../../../make.inc
|
|---|
| 4 | include ../mmprog.inc
|
|---|
| 5 |
|
|---|
| 6 | LIBOBJECTS = $(LIBDIR)/helper.obj \
|
|---|
| 7 | $(LIBDIR)/message.obj \
|
|---|
| 8 | $(LIBDIR)/sys_funcs.obj \
|
|---|
| 9 | $(LIBDIR)/window_funcs.obj \
|
|---|
| 10 | $(LIBDIR)/img_funcs.obj \
|
|---|
| 11 | $(LIBDIR)/ini_funcs.obj
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 | OBJECTS = image.obj
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 | all: mmfind.exe
|
|---|
| 18 |
|
|---|
| 19 | mmfind.exe: mmfind.c $(LIBOBJECTS) $(OBJECTS) makefile mmfind.rc def.tpl
|
|---|
| 20 | #Use this command to link dynamicaly
|
|---|
| 21 | cmd /C $(TOOLDIR)\create_MMPROG_def.cmd mmfind.def
|
|---|
| 22 | gcc $(CPPFLAGS) -I$(INC) mmfind.c $(LIBOBJECTS) $(OBJECTS) -los2me mmfind.def
|
|---|
| 23 | rc mmfind.rc mmfind.exe
|
|---|
| 24 |
|
|---|
| 25 | clean:
|
|---|
| 26 | -rm *.exe
|
|---|
| 27 | -rm *.dll
|
|---|
| 28 | -rm *.obj
|
|---|
| 29 | -rm *.res
|
|---|
| 30 | -rm *.ini
|
|---|
| 31 |
|
|---|
| 32 | cleaner:
|
|---|
| 33 | -rm *.*~
|
|---|
| 34 | -rm *.flc
|
|---|
| 35 |
|
|---|
| 36 |
|
|---|
| 37 | distribution:
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.