Building in local machine:
$ sh autogen.sh
$ ./configure
$ make
$ sudo make install
Building Debian package:
$ debuild -uc -us -b
Signed-off-by: Dongjin Kim <tobetter@gmail.com>
Change-Id: I76faa07c1586658d053a3e260ea231a19392f792
11 lines
239 B
Makefile
11 lines
239 B
Makefile
COMMON_CFLAGS=$(EXTRA_CFLAGS) $(LIBWIRINGPI_CFLAGS) -I.
|
|
LIBS=$(LIBWIRINGPI_LIBS)
|
|
|
|
bin_PROGRAMS = piGlow0 piGlow1
|
|
|
|
piGlow0_SOURCES = piGlow0.c
|
|
piGlow0_CFLAGS = $(COMMON_CFLAGS)
|
|
|
|
piGlow1_SOURCES = piGlow1.c
|
|
piGlow1_CFLAGS = $(COMMON_CFLAGS)
|