blob: 10b7ac39d852da5aa972a27747f77cbfe284988d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
### Do not edit -- Generated by 'configure --with-whatever' from Makefile.in
### RtAudio library Makefile
RM = /bin/rm
LN = /bin/ln
OBJECTS = RtAudio.o @objects@
STATIC = librtaudio.a
SHARED = @sharedlib@
RELEASE = 4.0.7
LIBRARIES = $(STATIC) $(SHARED)
CC = @CXX@
AR = @AR@
RANLIB = @RANLIB@
DEFS = @CPPFLAGS@
CFLAGS = @CXXFLAGS@ -Iinclude -fPIC
all : $(LIBRARIES)
tests:
cd tests && $(MAKE) all
$(LIBRARIES): $(OBJECTS)
$(AR) ruv $(STATIC) $(OBJECTS)
ranlib $(STATIC)
$(CC) -fPIC @libflags@ $(OBJECTS) @LIBS@
$(LN) -s @sharedname@ $(SHARED)
# $(CC) -shared $(OBJECTS) -o $(SHARED) @LIBS@
%.o : %.cpp
$(CC) $(CFLAGS) $(DEFS) -c $(<) -o $@
%.o : include/%.cpp
$(CC) $(CFLAGS) $(DEFS) -c $(<) -o $@
clean :
$(RM) -f $(LIBRARIES) @sharedname@ $(SHARED)*
$(RM) -f $(OBJECTS)
$(RM) -f *~
cd tests && $(MAKE) clean
distclean:
$(RM) -f $(LIBRARIES) @sharedname@ $(SHARED)*
$(RM) -f $(OBJECTS)
$(RM) -f *~
$(RM) -rf config.log config.status autom4te.cache Makefile rtaudio-config
cd tests && $(MAKE) distclean
strip :
strip $(LIBRARIES)
ranlib $(LIBRARIES)
cd tests && $(MAKE) strip
|