A few minor documentation updates before release (GS).
[rtaudio.git] / Makefile.in
1 ### Do not edit -- Generated by 'configure --with-whatever' from Makefile.in
2 ### RtAudio library Makefile
3
4 RM = /bin/rm
5
6 OBJECTS = RtAudio.o @objects@
7
8 LIBRARY  = librtaudio.a
9
10 CC       = @CXX@
11 AR       = @AR@
12 RANLIB   = @RANLIB@
13
14 DEFS     = @CPPFLAGS@
15 CFLAGS   = @CXXFLAGS@ -Iinclude
16
17 all : $(LIBRARY)
18
19 tests:
20         cd tests && $(MAKE) all
21
22 $(LIBRARY): $(OBJECTS)
23         $(AR) ruv $(LIBRARY) $(OBJECTS)
24         ranlib $(LIBRARY)
25
26 %.o : %.cpp
27         $(CC) $(CFLAGS) $(DEFS) -c $(<) -o $@
28
29 %.o : include/%.cpp
30         $(CC) $(CFLAGS) $(DEFS) -c $(<) -o $@
31
32 clean : 
33         -rm -f $(LIBRARY)
34         -rm -f $(OBJECTS)
35         -rm -f *~
36         cd tests && $(MAKE) clean
37
38 distclean: clean
39         -rm -rf config.log autom4te.cache Makefile rtaudio-config
40         cd tests && $(MAKE) distclean
41
42 strip : 
43         strip $(LIBRARY)
44         ranlib $(LIBRARY)
45         cd tests && $(MAKE) strip