diff options
author | N.N. <matju@users.sourceforge.net> | 2009-05-25 16:35:24 +0000 |
---|---|---|
committer | N.N. <matju@users.sourceforge.net> | 2009-05-25 16:35:24 +0000 |
commit | 7862fdca760b0497b1511d6c06123c4ab5c59421 (patch) | |
tree | 688bdd757df2d27a8f2def35ffac24704829ef17 /desiredata/src | |
parent | b542dc1a818b994108da42b6626013af8fe08f65 (diff) |
get main.c to be compiled with g++
svn path=/trunk/; revision=11499
Diffstat (limited to 'desiredata/src')
-rw-r--r-- | desiredata/src/makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/desiredata/src/makefile.in b/desiredata/src/makefile.in index 9f88deef..c96e86cd 100644 --- a/desiredata/src/makefile.in +++ b/desiredata/src/makefile.in @@ -60,8 +60,8 @@ pd$(EXE): $(OBJ) config.log $(SO) main.c pd-watchdog$(EXE): s_watchdog.c $(CXX) $(CFLAGS) $(STRIPFLAG) -o pd-watchdog$(EXE) s_watchdog.c -pd.com: main.o - $(CXX) $(LDFLAGS) $(DBG_CFLAGS) $(CFLAGS) -o pd.com main.o $(LIBS) -L../src -lpd +pd.com: main.c + $(CXX) $(LDFLAGS) $(DBG_CFLAGS) $(CFLAGS) -o pd.com main.c $(LIBS) -L../src -lpd strip --strip-unneeded -R .note -R .comment pd.com # i should sort out the LDFLAGS thing so that pd,pdsend,pdreceive don't get linked to all libs that libpd.so is linked to. |