diff options
author | Davide Morelli <morellid@users.sourceforge.net> | 2005-11-30 17:31:33 +0000 |
---|---|---|
committer | Davide Morelli <morellid@users.sourceforge.net> | 2005-11-30 17:31:33 +0000 |
commit | 84cff02e8cf3b773d2370d8020b8d1f4b95bcda9 (patch) | |
tree | 36bbf97a207a6a28481f724825c3e248dcffabd0 /Makefile | |
parent | 8911ddbc575c4714c5ac294dd32bbd9ab4278a2d (diff) |
going little further with common functions
svn path=/trunk/externals/frankenstein/; revision=4091
Diffstat (limited to 'Makefile')
-rwxr-xr-x | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,13 +1,13 @@ # customize here !
#VC="C:\Programmi\Microsoft Visual Studio .NET\Vc7"
VC="C:\Programmi\Microsoft Visual Studio .NET\Vc7"
-PDPATH="H:\PureData\pd-0.38-3.msw\pd"
-#PDPATH="C:\Documents and Settings\Davide\Documenti\personali\pd-0.38-3.msw\pd"
+#PDPATH="H:\PureData\pd-0.38-3.msw\pd"
+PDPATH="C:\Documents and Settings\Davide\Documenti\personali\pd-0.38-3.msw\pd"
current: pd_nt distclean
-pd_nt: chord_melo.dll chords_memory.dll harmonizer.dll GArhythm.dll ritmo1.dll
+pd_nt: chord_melo.dll chords_memory.dll harmonizer.dll GArhythm.dll ritmo1.dll test.dll
.SUFFIXES: .dll
@@ -22,8 +22,8 @@ PDNTLIB = $(PDNTLDIR)\libc.lib \ $(PDPATH)\bin\pd.lib
.c.dll:
- cl $(PDNTCFLAGS) $(PDNTINCLUDE) /c $*.c
- link /dll /export:$*_setup $*.obj $(PDNTLIB)
+ cl $(PDNTCFLAGS) $(PDNTINCLUDE) /c common.c $*.c
+ link /dll /export:$*_setup $*.obj common.obj $(PDNTLIB)
|