From bd77c496bb0633ba9083d890ce136d9664c4d05c Mon Sep 17 00:00:00 2001 From: "N.N." Date: Sat, 16 May 2009 17:57:52 +0000 Subject: hopefully fixes the pdsend/pdreceive compilation problem svn path=/trunk/; revision=11394 --- desiredata/src/makefile.in | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'desiredata/src/makefile.in') 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 \ -- cgit v1.2.1