[Freeswitch-svn] [commit] r4645 - freeswitch/trunk/libs/portaudio
Freeswitch SVN
mikej at freeswitch.org
Sun Mar 18 13:28:59 EDT 2007
Author: mikej
Date: Sun Mar 18 13:28:59 2007
New Revision: 4645
Modified:
freeswitch/trunk/libs/portaudio/Makefile.in
Log:
make makefile more bsd make friendly
Modified: freeswitch/trunk/libs/portaudio/Makefile.in
==============================================================================
--- freeswitch/trunk/libs/portaudio/Makefile.in (original)
+++ freeswitch/trunk/libs/portaudio/Makefile.in Sun Mar 18 13:28:59 2007
@@ -164,16 +164,19 @@
distclean: clean
rm -f config.log config.status Makefile libtool portaudio-2.0.pc
-%.o: %.c $(MAKEFILE) $(PAINC)
+.SUFFIXES:
+.SUFFIXES: .c .lo .o .cpp
+
+.c.o: $(MAKEFILE) $(PAINC)
$(CC) -c $(CFLAGS) $< -o $@
-%.lo: %.c $(MAKEFILE) $(PAINC)
+.c.lo: $(MAKEFILE) $(PAINC)
$(LIBTOOL) --mode=compile $(CC) -c $(CFLAGS) $< -o $@
-%.o: %.cpp $(MAKEFILE) $(PAINC)
+.cpp.o: $(MAKEFILE) $(PAINC)
$(CXX) -c $(CXXFLAGS) $< -o $@
-%.o: %.asm
+.asm.o:
$(NASM) $(NASMOPT) -o $@ $<
bin-stamp:
More information about the Freeswitch-svn
mailing list