aboutsummaryrefslogtreecommitdiff
path: root/desiredata/src/makefile.in
diff options
context:
space:
mode:
authorN.N. <matju@users.sourceforge.net>2009-05-16 17:57:52 +0000
committerN.N. <matju@users.sourceforge.net>2009-05-16 17:57:52 +0000
commitbd77c496bb0633ba9083d890ce136d9664c4d05c (patch)
tree389de4c7f1b72d96421c9cb6607965e4792510c1 /desiredata/src/makefile.in
parentdc7fe364b756c4a77356b32f73d81629e9ef7375 (diff)
hopefully fixes the pdsend/pdreceive compilation problem
svn path=/trunk/; revision=11394
Diffstat (limited to 'desiredata/src/makefile.in')
-rw-r--r--desiredata/src/makefile.in12
1 files changed, 7 insertions, 5 deletions
diff --git a/desiredata/src/makefile.in b/desiredata/src/makefile.in
index 64675070..3af3b104 100644
--- a/desiredata/src/makefile.in
+++ b/desiredata/src/makefile.in
@@ -25,11 +25,11 @@ CFLAGS = $(CPPFLAGS) @CFLAGS@ $(MORECFLAGS)
CFLAGS += -Wall -Wextra -Wno-unused-parameter -I.
CFLAGS += -DINSTALL_PREFIX=\"$(prefix)\"
+STRIP = @STRIP@
# --------------------- win32 ---------------------------
WATCHDOG = @WATCHDOG@
WLIB = @WLIB@
-WEXE = @WEXE@
EXE = @EXE@
PDSEND = @PDSEND@
PDRECEIVE = @PDRECEIVE@
@@ -68,19 +68,21 @@ pd-watchdog: s_watchdog.c
pd.com: main.o
$(CC) $(LDFLAGS) $(DBG_CFLAGS) $(CFLAGS) -o pd.com main.o \
$(LIBS) -L../src -lpd
- strip --strip-unneeded -R .note -R .comment pd.com
+ strip --strip-unneeded -R .note -R .comment pd.com
pdsend: u_pdsend.c
- $(CC) $(CFLAGS) $(STRIPFLAG) -o pdsend u_pdsend.c $(PDSEND)
+ $(CC) $(CFLAGS) $(STRIPFLAG) -o pdsend u_pdsend.c
+ $(STRIP) pdsend
pdreceive: u_pdreceive.c
- $(CC) $(CFLAGS) $(STRIPFLAG) -o pdreceive u_pdreceive.c $(PDRECEIVE)
+ $(CC) $(CFLAGS) $(STRIPFLAG) -o pdreceive u_pdreceive.c
+ $(STRIP) pdreceive
externs::
cd ../extra; for ext in bonk~ choice expr~ fiddle~ loop~ lrshift~ pique sigmund~; do \
cd $$ext; make @EXTERNTARGET@ || break; cd ..; done
-install:: all
+install:: all
install -d $(DESTDIR)$(bindir)
install -d $(DESTDIR)$(libpdbindir)
for file in defaults.ddrc pkgIndex.tcl poe.tcl bgerror.tcl; do \