Changed repository directory structure (gps).
authorGary Scavone <gary@music.mcgill.ca>
Thu, 6 Dec 2007 01:40:05 +0000 (01:40 +0000)
committerStephen Sinclair <sinclair@music.mcgill.ca>
Thu, 10 Oct 2013 23:32:01 +0000 (01:32 +0200)
Makefile.in [deleted file]

diff --git a/Makefile.in b/Makefile.in
deleted file mode 100644 (file)
index 57df82b..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-### Do not edit -- Generated by 'configure --with-whatever' from Makefile.in
-### RtAudio library Makefile
-
-RM = /bin/rm
-
-OBJECTS        = RtAudio.o @objects@
-
-LIBRARY  = librtaudio.a
-
-CC       = @CXX@
-AR       = @AR@
-RANLIB   = @RANLIB@
-
-DEFS     = @debug@
-DEFS    += @audio_apis@
-CFLAGS   = @cflags@ -Iinclude
-CFLAGS  += @warn@
-
-all : $(LIBRARY)
-
-tests:
-       cd tests && $(MAKE) all
-
-$(LIBRARY): $(OBJECTS)
-       $(AR) ruv $(LIBRARY) $(OBJECTS)
-       ranlib $(LIBRARY)
-
-%.o : %.cpp
-       $(CC) $(CFLAGS) $(DEFS) -c $(<) -o $@
-
-%.o : include/%.cpp
-       $(CC) $(CFLAGS) $(DEFS) -c $(<) -o $@
-
-clean : 
-       -rm -f $(LIBRARY)
-       -rm -f $(OBJECTS)
-       -rm -f *~
-       cd tests && $(MAKE) clean
-
-distclean: clean
-       -rm -rf config.log autom4te.cache Makefile rtaudio-config
-       cd tests && $(MAKE) distclean
-
-strip : 
-       strip $(LIBRARY)
-       ranlib $(LIBRARY)
-       cd tests && $(MAKE) strip