source: trunk/classes/mm-progs/volume/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: 682 bytes
Line 
1# Makefile
2
3include ../../../make.inc
4
5# MM-progs specific makefile include
6include ../mmprog.inc
7
8OBJECTS = $(LIBDIR)/message.obj \
9 $(LIBDIR)/helper.obj \
10 $(LIBDIR)/menu_funcs.obj \
11 $(LIBDIR)/sys_funcs.obj
12OBJS2 = customprocs.obj
13
14all: classvol.exe
15
16classvol.exe: classvol.c $(OBJECTS) $(OBJS2) makefile def.tpl
17 cmd /C $(TOOLDIR)\create_MMPROG_def.cmd classvolume.def
18#Use this command to link dynamicaly
19 $(CC) $(CPPFLAGS) -I$(INC) classvol.c $(OBJECTS) $(OBJS2) -los2me classvolume.def
20 rc classvolume.rc classvol.exe
21
22
23
24clean:
25 -rm *.exe
26 -rm *.dll
27 -rm *.obj
28 -rm *.res
29 -rm *.ini
30
31cleaner:
32 -rm *.*~
33 -rm *.flc
34
35
36distribution:
Note: See TracBrowser for help on using the repository browser.