source: trunk/classes/mm-progs/imageconverter/makefile@ 4

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