home *** CD-ROM | disk | FTP | other *** search
Makefile | 1991-07-30 | 1.3 KB | 89 lines |
- .AUTODEPEND
-
- # *Directory Definitions*
- INCLUDE = D:\BORLANDC\INCLUDE
- LIB = D:\BORLANDC\LIB
-
- # *Translator Definitions*
- CC = bcc +SNDHACK.CFG
- TASM = TASM
- TLINK = tlink
-
- # *Implicit Rules*
- .c.obj:
- $(CC) -c {$< }
-
- # *List Macros*
- Link_Exclude = \
- app.res
-
- Link_Include = \
- main.obj \
- init.obj \
- edit.obj \
- file.obj \
- fpaste.obj \
- play.obj \
- app.def
-
- Menus = menu.rc
-
- Dialogs = \
- about.dlg \
- countvn.dlg \
- open.dlg \
- saveas.dlg \
- setqsize.dlg \
- setsndn.dlg \
- setvacc.dlg \
- setvenv.dlg \
- setvnote.dlg \
- setvsnd.dlg \
- setvthr.dlg \
- waitsnds.dlg
-
- # *Explicit Rules*
- sndhack.exe: sndhack.cfg $(Link_Include) $(Link_Exclude)
- $(TLINK) /x/c/Twe/P-/L$(LIB) @&&|
- c0ws.obj+
- main.obj+
- init.obj+
- edit.obj+
- file.obj+
- fpaste.obj+
- play.obj
- sndhack
- # no map file
- cwins.lib+
- import.lib+
- maths.lib+
- cs.lib
- app.def
- |
- RC app.res sndhack.exe
-
- # *Individual File Dependencies*
- main.obj: main.c
-
- init.obj: init.c
-
- edit.obj: edit.c
-
- file.obj: file.c
-
- fpaste.obj: fpaste.c
-
- play.obj: play.c
-
- app.res: app.rc $(Menus) $(Dialogs)
- RC -R -I$(INCLUDE) -FO app.res APP.RC
-
- # *Compiler Configuration File*
- sndhack.cfg: makefile.
- copy &&|
- -W
- -I$(INCLUDE)
- -L$(LIB)
- | sndhack.cfg
-
-