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

Last change on this file since 129 was 126, checked in by gyoung, 2 years ago

Changes to build players and related cwmm class exe using VAC 3.08

File size: 706 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) mmpm2.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 -rm $(LIBDIR)/*.obj
31
32cleaner:
33 -rm *.*~
34 -rm *.flc
35
36
37distribution:
Note: See TracBrowser for help on using the repository browser.