source: trunk/classes/mm-progs/volume/makefile@ 100

Last change on this file since 100 was 53, checked in by gyoung, 2 years ago

Make file changes to get it to build

File size: 686 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) -lmmpm2.lib 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.