summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary Scavone <gary@music.mcgill.ca>2007-12-06 01:40:05 +0000
committerStephen Sinclair <sinclair@music.mcgill.ca>2013-10-11 01:32:01 +0200
commit0cf52ca34d2a4a473ac8408a4cff5260c1b85c94 (patch)
treeb029ac078180b33708888033467ec6e923756067
parent057ff0c4d3dd63b2cc9e561d53e76e063e9fa413 (diff)
Changed repository directory structure (gps).
-rw-r--r--Makefile.in47
1 files changed, 0 insertions, 47 deletions
diff --git a/Makefile.in b/Makefile.in
deleted file mode 100644
index 57df82b..0000000
--- a/Makefile.in
+++ /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