diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2010-09-02 13:30:16 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2010-09-02 13:30:16 +0000 |
commit | 100e87a798b236cf841085a0342efd84f077ed05 (patch) | |
tree | 990d1d1f23b92656b5dd52a6834f2f82fea9d96e | |
parent | 415ac5ca8b64ad0c289d9469fee21f077bebe2c0 (diff) |
link against libcwiidsvn2git-head.0branches/externals/hardware/wiimote-0.3
svn path=/branches/externals/hardware/wiimote-0.3/; revision=13955
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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) #------------------------------------------------------------------------------# # |