From fc3d3c0a4f110a23335398c327ac0a4fc949d5cb Mon Sep 17 00:00:00 2001 From: Guenter Geiger Date: Mon, 17 Jun 2002 10:13:57 +0000 Subject: This commit was generated by cvs2svn to compensate for changes in r12, which included commits to RCS files with non-trunk default branches. svn path=/trunk/externals/ggee/; revision=13 --- control/Makefile | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100755 control/Makefile (limited to 'control/Makefile') diff --git a/control/Makefile b/control/Makefile new file mode 100755 index 0000000..abcf9dd --- /dev/null +++ b/control/Makefile @@ -0,0 +1,53 @@ +current: nt + + +# TARGETS += stk + +VERSION = \"0.16\" + +.SUFFIXES: .dll .obj +# ----------------------- NT ---------------------------- + +NTOBJECTS = *.obj +NTDLLS = *.dll + +PDNTCFLAGS = /W3 /WX /DNT /DPD /nologo + +PDNTINCLUDE = /I. /I..\..\pd\src + +ProgramFiles = c:\Program Files +PDNTLDIR = "$(ProgramFiles)\Microsoft Visual Studio\Vc98\lib" + +PDNTLIB = $(PDNTLDIR)\libc.lib \ + $(PDNTLDIR)\oldnames.lib \ + $(PDNTLDIR)\wsock32.lib \ + $(PDNTLDIR)\kernel32.lib \ + $(PDNTLDIR)\uuid.lib \ + ..\..\pd\bin\pd.lib + +nt: $(NTOBJECTS) + -link /dll $(PDNTLIB) constant.obj /export:constant_setup + -link /dll $(PDNTLIB) inv.obj /export:inv_setup + -link /dll $(PDNTLIB) qread.obj /export:qread_setup + -link /dll $(PDNTLIB) rl.obj /export:rl_setup + -link /dll $(PDNTLIB) rtout.obj /export:rtout_setup + -link /dll $(PDNTLIB) unserialize.obj /export:unserialize_setup + -link /dll $(PDNTLIB) serialize.obj /export:serialize_setup + -link /dll $(PDNTLIB) sinh.obj /export:sinh_setup + -link /dll $(PDNTLIB) sl.obj /export:sl_setup + -link /dll $(PDNTLIB) stripdir.obj /export:stripdir_setup + -link /dll $(PDNTLIB) unwonk.obj /export:unwonk_setup + +clean: + del *.obj + del *.dll + + +.c.obj: + -cl $(PDNTCFLAGS) $(PDNTINCLUDE) /c $*.c + +.obj.dll: + + + + -- cgit v1.2.1