chiark / gitweb /
wiringPi Version 2 - First commit (of v2)
[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
26 #DEBUG  = -g -O0
27 DEBUG   = -O3
28 CC      = gcc
29 INCLUDE = -I/usr/local/include
30 CFLAGS  = $(DEBUG) -Wall $(INCLUDE) -Winline -pipe
31
32 LDFLAGS = -L/usr/local/lib
33 LDLIBS    = -lwiringPi -lwiringPiDev -lpthread -lm
34
35 # Should not alter anything below this line
36 ###############################################################################
37
38 SRC     =       blink.c buttons.c reaction.c ladder.c metro.c motor.c
39
40 OBJ     =       $(SRC:.c=.o)
41
42 BINS    =       $(SRC:.c=)
43
44 all:    $(BINS)
45
46 blink:  blink.o
47         @echo [link]
48         @$(CC) -o $@ blink.o $(LDFLAGS) $(LDLIBS)
49
50 buttons:        buttons.o
51         @echo [link]
52         @$(CC) -o $@ buttons.o $(LDFLAGS) $(LDLIBS)
53
54 reaction:       reaction.o
55         @echo [link]
56         @$(CC) -o $@ reaction.o $(LDFLAGS) $(LDLIBS)
57
58 ladder: ladder.o
59         @echo [link]
60         @$(CC) -o $@ ladder.o $(LDFLAGS) $(LDLIBS)
61
62 metro:  metro.o
63         @echo [link]
64         @$(CC) -o $@ metro.o $(LDFLAGS) $(LDLIBS)
65
66 motor:  motor.o
67         @echo [link]
68         @$(CC) -o $@ motor.o $(LDFLAGS) $(LDLIBS)
69
70 .c.o:
71         @echo [CC] $<
72         @$(CC) -c $(CFLAGS) $< -o $@
73
74 clean:
75         @echo "[Clean]"
76         @rm -f $(OBJ) *~ core tags $(BINS)
77
78 tags:   $(SRC)
79         @echo [ctags]
80         @ctags $(SRC)
81
82 depend:
83         makedepend -Y $(SRC)
84
85 # DO NOT DELETE