Changeset 4 for trunk/classes/mm-progs/audioconverter
- Timestamp:
- Jul 13, 2017, 5:17:57 AM (8 years ago)
- Location:
- trunk/classes/mm-progs/audioconverter
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/classes/mm-progs/audioconverter/audconv.DEF
r2 r4 1 ; DEF-file for audconv.exe. This is a PM program which2 ; shows a dialog box and converts audio files to waves.3 1 ; 4 ; (C) Chris Wohlgemuth 2001 5 2 ; AUDCONV: PM-Program for audio file converting 3 ; 4 ; 5 ; (c) C. Wohlgemuth 2001-2006 6 ; 7 ; 8 ; Created 12 Feb 2006 19:46:31 9 ; 6 10 ;/* 7 11 ; * This program is free software; you can redistribute it and/or modify … … 25 29 ; * http://www.geocities.com/SiliconValley/Sector/5785/ 26 30 ; */ 27 28 NAME audconv WINDOWAPI 29 DESCRIPTION '$@#(c) Chris Wohlgemuth :V0.2.7 (17.08.2003)#@PM-Program for audio file converting' 30 31 32 33 31 NAME AUDCONV WINDOWAPI 32 DESCRIPTION '$@#(c) C. Wohlgemuth 2006:0.2 #@##1## 12/02/06 19:46:31 My ;-) ::::9::@@PM-Program for audio file converting V0.2.9' 33 STACKSIZE 1638400 -
trunk/classes/mm-progs/audioconverter/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 -s 9 CPPFLAGS = -O -Wall -Zomf -Zmt -Zsys -s 5 OBJECTS = $(LIBDIR)/message.obj \ 6 $(LIBDIR)/helper.obj \ 7 $(LIBDIR)/progbars.obj \ 8 $(LIBDIR)/sys_funcs.obj 10 9 11 INC = ../include -I ../../../classes/inc -I ../../../common_functions/include 12 DEFS = 13 PROGS = 14 ODIR = . 15 CPPDIR = . 16 LIBDIR = ../lib 17 OBJECTS = $(LIBDIR)/message.obj $(LIBDIR)/helper.obj $(LIBDIR)/progbars.obj $(LIBDIR)/sys_funcs.obj 10 include ../mmprog.inc 18 11 19 12 20 13 all: audconv.exe 21 14 22 $(LIBDIR)/%.obj: $(COMMONSRC)/%.c23 gcc -c -o$@ -Zomf -I$(INC) $<24 15 25 audconv.exe: audconv.c $(OBJECTS) 26 gcc $(CPPFLAGS) -I$(INC) audconv.c $(OBJECTS) -los2me audconv.def 16 audconv.exe: audconv.c $(OBJECTS) makefile def.tpl 17 cmd /C $(TOOLDIR)\create_MMPROG_def.cmd audconv.def 18 $(CC) $(CPPFLAGS) -I$(INC) audconv.c $(OBJECTS) -los2me audconv.def 27 19 28 20 29 21 clean: 30 22 -rm *.exe 23 -rm *.dll 31 24 -rm *.obj 25 -rm *.res 26 -rm *.ini 32 27 33 28 cleaner: … … 38 33 distribution: 39 34 -cp *.exe ../../dist/bin 40 41
Note:
See TracChangeset
for help on using the changeset viewer.