aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2010-09-02 13:30:16 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2010-09-02 13:30:16 +0000
commit100e87a798b236cf841085a0342efd84f077ed05 (patch)
tree990d1d1f23b92656b5dd52a6834f2f82fea9d96e
parent415ac5ca8b64ad0c289d9469fee21f077bebe2c0 (diff)
svn path=/branches/externals/hardware/wiimote-0.3/; revision=13955
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 0f4a4ed..8fd0d30 100644
--- a/Makefile
+++ b/Makefile
@@ -9,13 +9,13 @@ SOURCES = wiimote.c
# list all pd objects (i.e. myobject.pd) files here, and their helpfiles will
# be included automatically
-#PDOBJECTS = mypdobject.pd
+#PDOBJECTS =
# example patches and related files, in the 'examples' subfolder
-#EXAMPLES = bothtogether.pd
+#EXAMPLES =
# manuals and related files, in the 'manual' subfolder
-#MANUAL = manual.txt
+#MANUAL =
# if you want to include any other files in the source and binary tarballs,
# list them here. This can be anything from header files, test patches,
@@ -31,9 +31,9 @@ EXTRA_DIST =
#
#------------------------------------------------------------------------------#
-CFLAGS = -DPD -I$(PD_PATH)/src -Wall -W -g
+CFLAGS = -DPD -I$(PD_PATH)/src -Wall -W -g $(shell pkg-config --cflags cwiid)
LDFLAGS =
-LIBS =
+LIBS = $(shell pkg-config --libs cwiid)
#------------------------------------------------------------------------------#
#