Various configure changes for MinGW (gps).
[rtaudio-cdist.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     = @debug@
15 DEFS    += @audio_apis@
16 CFLAGS   = @cflags@ -Iinclude
17 CFLAGS  += @warn@
18
19 all : $(LIBRARY)
20
21 tests:
22         cd tests && $(MAKE) all
23
24 $(LIBRARY): $(OBJECTS)
25         $(AR) ruv $(LIBRARY) $(OBJECTS)
26         ranlib $(LIBRARY)
27
28 %.o : %.cpp
29         $(CC) $(CFLAGS) $(DEFS) -c $(<) -o $@
30
31 %.o : include/%.cpp
32         $(CC) $(CFLAGS) $(DEFS) -c $(<) -o $@
33
34 clean : 
35         -rm -f $(LIBRARY)
36         -rm -f $(OBJECTS)
37         -rm -f *~
38         cd tests && $(MAKE) clean
39
40 distclean: clean
41         -rm -rf config.log autom4te.cache Makefile rtaudio-config
42         cd tests && $(MAKE) distclean
43
44 strip : 
45         strip $(LIBRARY)
46         ranlib $(LIBRARY)
47         cd tests && $(MAKE) strip