File: Makefile.plb

package info (click to toggle)
pd-wiimote 0.3.2-9
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 280 kB
  • sloc: ansic: 826; makefile: 227; sh: 4
file content (24 lines) | stat: -rw-r--r-- 428 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
lib.name = wiimote
class.sources = \
	wiimote.c \
	$(empty)

datafiles = \
	$(wildcard *.pd) \
	README \
	CHANGES \
	LICENSE \
	$(empty)

datadirs = \
	$(empty)

PKG_CONFIG ?= pkg-config
cwiidcflags = $(shell $(PKG_CONFIG) --cflags cwiid)
cwiidlibs = $(shell $(PKG_CONFIG) --libs cwiid)

cflags = $(cwiidcflags)
ldlibs = $(cwiidlibs)

PDLIBBUILDER_DIR=/usr/share/pd-lib-builder
include $(PDLIBBUILDER_DIR)/Makefile.pdlibbuilder