diff options
| author | Gary Scavone <gary@music.mcgill.ca> | 2007-12-06 01:44:52 +0000 |
|---|---|---|
| committer | Stephen Sinclair <sinclair@music.mcgill.ca> | 2013-10-11 01:34:25 +0200 |
| commit | 8c578f616e1cb4ffefdb407d373e3f7e0b68b925 (patch) | |
| tree | 0e929136246f4f6c36e37c5b516ab3302189943f /Makefile.in | |
| parent | 0cf52ca34d2a4a473ac8408a4cff5260c1b85c94 (diff) | |
Further repository structure changes (gps).
Diffstat (limited to 'Makefile.in')
| -rw-r--r-- | Makefile.in | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in new file mode 100644 index 0000000..57df82b --- /dev/null +++ b/Makefile.in @@ -0,0 +1,47 @@ +### 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 |
