summaryrefslogtreecommitdiff
path: root/Makefile.in
blob: 74d648d7781c34725720e003bead9253cd09d40d (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
### Do not edit -- Generated by 'configure --with-whatever' from Makefile.in
### RtAudio library Makefile

RM = /bin/rm
LN = /bin/ln

OBJECTS	= RtAudio.o @objects@

LIBNAME = librtaudio
STATIC = $(LIBNAME).a
SHARED = @sharedlib@
RELEASE = 4.1.0
MAJOR = 4
LIBRARIES = $(STATIC) $(SHARED)

CC       = @CXX@
AR       = @AR@
RANLIB   = @RANLIB@

DEFS     = @CPPFLAGS@
CFLAGS   = @CXXFLAGS@ -Iinclude -fPIC

PREFIX   = @prefix@

all : $(LIBRARIES)

tests:
	cd tests && $(MAKE) all

$(LIBRARIES): $(OBJECTS)
	$(AR) ruv $(STATIC) $(OBJECTS)
	ranlib $(STATIC)
	$(CC) -fPIC @libflags@ $(OBJECTS) @LIBS@
	$(LN) -sf @sharedname@ $(SHARED)
	$(LN) -sf @sharedname@ $(SHARED).$(MAJOR)

%.o : %.cpp
	$(CC) $(CFLAGS) $(DEFS) -c $(<) -o $@

%.o : include/%.cpp
	$(CC) $(CFLAGS) $(DEFS) -c $(<) -o $@

install:
	install --mode=755 $(STATIC) $(PREFIX)/lib/
	install --mode=755 @sharedname@ $(PREFIX)/lib/
	$(LN) -sf @sharedname@ $(PREFIX)/lib/$(SHARED)
	$(LN) -sf @sharedname@ $(PREFIX)/lib/$(SHARED).$(MAJOR)
	install --mode=644 $(LIBNAME).pc $(PREFIX)/lib/pkgconfig
	install --mode=644 RtAudio.h $(PREFIX)/include/
	install --mode=755 rtaudio-config $(PREFIX)/bin/

uninstall:
	-@rm -vf $(patsubst %,$(PREFIX)/lib/%, $(LIBRARIES) $(SHARED).$(MAJOR) $(SHARED).$(RELEASE))
	-@rm -vf $(PREFIX)/lib/pkgconfig/$(LIBNAME).pc
	-@rm -vf $(PREFIX)/bin/rtaudio-config

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 $(LIBNAME).pc
	cd tests && $(MAKE) distclean

strip : 
	strip $(LIBRARIES)
	ranlib $(LIBRARIES)
	cd tests && $(MAKE) strip

.PHONY: clean distclean strip install uninstall