chiark / gitweb /
Build system: Add a formulaic setting of Q from V for debugging
[wiringPi.git] / examples / PiFace / 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 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 # Should not alter anything below this line
39 ###############################################################################
40
41 SRC     =       blink.c buttons.c reaction.c ladder.c metro.c motor.c
42
43 OBJ     =       $(SRC:.c=.o)
44
45 BINS    =       $(SRC:.c=)
46
47 all:    $(BINS)
48
49 blink:  blink.o
50         @echo [link]
51         @$(CC) -o $@ blink.o $(LDFLAGS) $(LDLIBS)
52
53 buttons:        buttons.o
54         @echo [link]
55         @$(CC) -o $@ buttons.o $(LDFLAGS) $(LDLIBS)
56
57 reaction:       reaction.o
58         @echo [link]
59         @$(CC) -o $@ reaction.o $(LDFLAGS) $(LDLIBS)
60
61 ladder: ladder.o
62         @echo [link]
63         @$(CC) -o $@ ladder.o $(LDFLAGS) $(LDLIBS)
64
65 metro:  metro.o
66         @echo [link]
67         @$(CC) -o $@ metro.o $(LDFLAGS) $(LDLIBS)
68
69 motor:  motor.o
70         @echo [link]
71         @$(CC) -o $@ motor.o $(LDFLAGS) $(LDLIBS)
72
73 .c.o:
74         @echo [CC] $<
75         @$(CC) -c $(CFLAGS) $< -o $@
76
77 clean:
78         @echo "[Clean]"
79         @rm -f $(OBJ) *~ core tags $(BINS)
80
81 tags:   $(SRC)
82         @echo [ctags]
83         @ctags $(SRC)
84
85 depend:
86         makedepend -Y $(SRC)
87
88 # DO NOT DELETE