chiark / gitweb /
b7a8595bd7491c13429959729a74f9038208beb8
[wiringPi.git] / examples / PiGlow / 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 # Should not alter anything below this line
39 ###############################################################################
40
41 SRC     =       piGlow0.c piGlow1.c piglow.c
42
43 OBJ     =       $(SRC:.c=.o)
44
45 BINS    =       $(SRC:.c=)
46
47 all:    $(BINS)
48
49 piGlow0:        piGlow0.o
50         $Q echo [link]
51         $Q $(CC) -o $@ piGlow0.o $(LDFLAGS) $(LDLIBS)
52
53 piGlow1:        piGlow1.o
54         $Q echo [link]
55         $Q $(CC) -o $@ piGlow1.o $(LDFLAGS) $(LDLIBS)
56
57 piglow: piglow.o
58         $Q echo [link]
59         $Q $(CC) -o $@ piglow.o $(LDFLAGS) $(LDLIBS)
60
61 .c.o:
62         $Q echo [CC] $<
63         $Q $(CC) -c $(CFLAGS) $< -o $@
64
65 clean:
66         $Q echo "[Clean]"
67         $Q rm -f $(OBJ) *~ core tags $(BINS)
68
69 tags:   $(SRC)
70         $Q echo [ctags]
71         $Q ctags $(SRC)
72
73 install:        piglow
74         $Q echo Installing piglow into /usr/local/bin
75         $Q cp -a piglow /usr/local/bin/piglow
76         $Q chmod 755 /usr/local/bin/piglow
77         $Q echo Done. Remember to load the I2C drivers!
78
79 depend:
80         makedepend -Y $(SRC)
81
82 # DO NOT DELETE