chiark / gitweb /
Build system: Add a formulaic setting of Q from V for debugging
[wiringPi.git] / examples / q2w / Makefile
1 #
2 # Makefile:
3 #       wiringPi - Wiring Compatable library for the Raspberry Pi
4 #       https://projects.drogon.net/wiring-pi
5 #
6 #       Copyright (c) 2012-2013 Gordon Henderson
7 #################################################################################
8 # This file is part of wiringPi:
9 #       Wiring Compatable library for the Raspberry Pi
10 #
11 #    wiringPi is free software: you can redistribute it and/or modify
12 #    it under the terms of the GNU Lesser General Public License as published by
13 #    the Free Software Foundation, either version 3 of the License, or
14 #    (at your option) any later version.
15 #
16 #    wiringPi is distributed in the hope that it will be useful,
17 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
18 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 #    GNU Lesser General Public License for more details.
20 #
21 #    You should have received a copy of the GNU Lesser General Public License
22 #    along with wiringPi.  If not, see <http://www.gnu.org/licenses/>.
23 #################################################################################
24
25 ifneq ($V,1)
26 Q ?= @
27 endif
28
29 #DEBUG  = -g -O0
30 DEBUG   = -O3
31 CC      = gcc
32 INCLUDE = -I/usr/local/include
33 CFLAGS  = $(DEBUG) -Wall $(INCLUDE) -Winline -pipe
34
35 LDFLAGS = -L/usr/local/lib
36 LDLIBS    = -lwiringPi -lwiringPiDev -lpthread -lm
37
38 ###############################################################################
39
40 SRC     =       blink.c button.c blink-io.c volts.c bright.c
41
42 OBJ     =       $(SRC:.c=.o)
43
44 BINS    =       $(SRC:.c=)
45
46 all:    $(BINS)
47
48 blink:  blink.o
49         @echo [link]
50         @$(CC) -o $@ blink.o $(LDFLAGS) $(LDLIBS)
51
52 blink-io:       blink-io.o
53         @echo [link]
54         @$(CC) -o $@ blink-io.o $(LDFLAGS) $(LDLIBS)
55
56 button: button.o
57         @echo [link]
58         @$(CC) -o $@ button.o $(LDFLAGS) $(LDLIBS)
59
60 volts:  volts.o
61         @echo [link]
62         @$(CC) -o $@ volts.o $(LDFLAGS) $(LDLIBS)
63
64 bright: bright.o
65         @echo [link]
66         @$(CC) -o $@ bright.o $(LDFLAGS) $(LDLIBS)
67
68
69 .c.o:
70         @echo [CC] $<
71         @$(CC) -c $(CFLAGS) $< -o $@
72
73 clean:
74         @echo "[Clean]"
75         @rm -f $(OBJ) *~ core tags $(BINS)
76
77 tags:   $(SRC)
78         @echo [ctags]
79         @ctags $(SRC)
80
81 depend:
82         makedepend -Y $(SRC)
83
84 # DO NOT DELETE