source: trunk/classes/mm-progs/mmfind/makefile@ 71

Last change on this file since 71 was 53, checked in by gyoung, 3 years ago

Make file changes to get it to build

File size: 702 bytes
Line 
1# Makefile
2
3include ../../../make.inc
4include ../mmprog.inc
5
6LIBOBJECTS = $(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
14OBJECTS = image.obj
15
16
17all: mmfind.exe
18
19mmfind.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) -lmmpm2.lib mmfind.def
23 rc mmfind.rc mmfind.exe
24
25clean:
26 -rm *.exe
27 -rm *.dll
28 -rm *.obj
29 -rm *.res
30 -rm *.ini
31
32cleaner:
33 -rm *.*~
34 -rm *.flc
35
36
37distribution:
Note: See TracBrowser for help on using the repository browser.