mirror of
https://github.com/cookiengineer/audacity
synced 2026-01-12 07:35:51 +01:00
Move library tree where it belongs
This commit is contained in:
43
lib-src/rtaudio/Makefile.in
Normal file
43
lib-src/rtaudio/Makefile.in
Normal file
@@ -0,0 +1,43 @@
|
||||
### RtAudio library Makefile
|
||||
|
||||
RM = /bin/rm
|
||||
|
||||
OBJECTS = RtAudio.o
|
||||
|
||||
LIBRARY = librtaudio.a
|
||||
|
||||
CC = @CXX@
|
||||
AR = @AR@
|
||||
RANLIB = @RANLIB@
|
||||
|
||||
DEFS = @debug@
|
||||
DEFS += @audio_apis@
|
||||
CFLAGS = @cflags@
|
||||
CFLAGS += @warn@
|
||||
|
||||
all : $(LIBRARY)
|
||||
|
||||
tests:
|
||||
cd tests && $(MAKE) all
|
||||
|
||||
$(LIBRARY): $(OBJECTS)
|
||||
$(AR) ruv $(LIBRARY) $(OBJECTS)
|
||||
ranlib $(LIBRARY)
|
||||
|
||||
%.o : %.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
|
||||
Reference in New Issue
Block a user