Changeset 4 for trunk/classes/mm-progs/volume
- Timestamp:
- Jul 13, 2017, 5:17:57 AM (8 years ago)
- Location:
- trunk/classes/mm-progs/volume
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/classes/mm-progs/volume/classvolume.DEF
r2 r4 1 ; DEF-file for classvol.exe. This is a PM program which2 ; controls the volume of playing audio objects.3 1 ; 4 ; (C) Chris Wohlgemuth 2003 5 2 ; CLASSVOL: PM-Program for volume control 3 ; 4 ; 5 ; (c) Chris Wohlgemuth 2003-2005 6 ; 7 ; 8 ; Created 14 Aug 2005 21:06:17 9 ; 6 10 ;/* 7 11 ; * This program is free software; you can redistribute it and/or modify … … 26 30 ; */ 27 31 NAME CLASSVOL WINDOWAPI 28 DESCRIPTION '$@#(c) C hris Wohlgemuth :V0.2.7 (17.08.2003) ()#@PM-Program for volume control'32 DESCRIPTION '$@#(c) C. Wohlgemuth 2005:0.2 #@##1## 14/08/05 21:06:17 My ;-) ::::9::@@PM-Program for volume control V0.2.9' 29 33 STACKSIZE 1638400 30 31 32 33 -
trunk/classes/mm-progs/volume/makefile
r2 r4 3 3 include ../../../make.inc 4 4 5 CC = gcc 6 LIB_DIR = $d:/emx/lib 7 #CPPFLAGS = -Ge- /Gm+ -G4 -Gl /O+ -Oc+ -Ol 8 #CPPFLAGS = -O -Zomf -Zcrtdll -Zmtd -s 9 CPPFLAGS = -O -Wall -Zomf -Zmt -Zsys -s 10 INC = ../include -I ../../../classes/inc -I ../../../common_functions/include 11 DEFS = 12 PROGS = 13 ODIR = . 14 CPPDIR = . 15 LIBDIR = ../lib 16 OBJECTS = $(LIBDIR)/message.obj $(LIBDIR)/helper.obj $(LIBDIR)/menu_funcs.obj $(LIBDIR)/sys_funcs.obj 17 OBJS2 = customprocs.obj 18 # display.obj 5 # MM-progs specific makefile include 6 include ../mmprog.inc 19 7 8 OBJECTS = $(LIBDIR)/message.obj \ 9 $(LIBDIR)/helper.obj \ 10 $(LIBDIR)/menu_funcs.obj \ 11 $(LIBDIR)/sys_funcs.obj 12 OBJS2 = customprocs.obj 20 13 21 14 all: classvol.exe 22 15 23 $(LIBDIR)/%.obj: $(COMMONSRC)/%.c 24 gcc -c -Wall -o$@ -Zomf -I$(INC) $< 25 26 %.obj: %.c 27 gcc -c -Wall -o$@ -Zomf -I$(INC) $< 28 29 classvol.exe: classvol.c $(OBJECTS) $(OBJS2) makefile 16 classvol.exe: classvol.c $(OBJECTS) $(OBJS2) makefile def.tpl 17 cmd /C $(TOOLDIR)\create_MMPROG_def.cmd classvolume.def 30 18 #Use this command to link dynamicaly 31 gcc$(CPPFLAGS) -I$(INC) classvol.c $(OBJECTS) $(OBJS2) -los2me classvolume.def19 $(CC) $(CPPFLAGS) -I$(INC) classvol.c $(OBJECTS) $(OBJS2) -los2me classvolume.def 32 20 rc classvolume.rc classvol.exe 33 21 34 22 23 35 24 clean: 36 25 -rm *.exe 26 -rm *.dll 37 27 -rm *.obj 28 -rm *.res 38 29 -rm *.ini 39 -rm *.res40 30 41 31 cleaner: … … 43 33 -rm *.flc 44 34 35 45 36 distribution: 46 47
Note:
See TracChangeset
for help on using the changeset viewer.