summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorStephen Sinclair <sinclair@music.mcgill.ca>2013-10-11 01:51:47 +0200
committerStephen Sinclair <sinclair@music.mcgill.ca>2013-10-11 01:51:47 +0200
commit2572d0d544acf19943ae955059e1b64b0968a3ba (patch)
treef908ba7889e4e05614e7425a7ff69273ec3f498e /Makefile.in
parent64f75193375cc6ec0052e33131df5939b7926ecd (diff)
parent3dc6e2e86821303784512f86805683f1fda14ccb (diff)
Merge 4.0.3 into releases
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index f658377..57df82b 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,8 +1,9 @@
+### Do not edit -- Generated by 'configure --with-whatever' from Makefile.in
### RtAudio library Makefile
RM = /bin/rm
-OBJECTS = RtAudio.o
+OBJECTS = RtAudio.o @objects@
LIBRARY = librtaudio.a
@@ -12,7 +13,7 @@ RANLIB = @RANLIB@
DEFS = @debug@
DEFS += @audio_apis@
-CFLAGS = @cflags@
+CFLAGS = @cflags@ -Iinclude
CFLAGS += @warn@
all : $(LIBRARY)
@@ -27,6 +28,9 @@ $(LIBRARY): $(OBJECTS)
%.o : %.cpp
$(CC) $(CFLAGS) $(DEFS) -c $(<) -o $@
+%.o : include/%.cpp
+ $(CC) $(CFLAGS) $(DEFS) -c $(<) -o $@
+
clean :
-rm -f $(LIBRARY)
-rm -f $(OBJECTS)