chiark / gitweb /
16bf7e2fa6e408000d7a6ebea20523fcd1e30186
[wiringPi.git] / examples / 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 LIBS    = -lwiringPi
34
35 # Should not alter anything below this line
36 ###############################################################################
37
38 SRC     =       test1.c test2.c speed.c lcd.c wfi.c piface.c gertboard.c nes.c delayTest.c softPwm.c
39
40 OBJ     =       test1.o test2.o speed.o lcd.o wfi.o piface.o gertboard.o nes.o delayTest.o softPwm.o
41
42 BINS    =       test1 test2 speed lcd wfi piface gertboard nes delayTest softPwm
43
44 all:    
45         @cat README.TXT
46         @echo "    $(BINS)" | fmt
47         @echo ""
48
49 test1:  test1.o
50         @echo [link]
51         $(CC) -o $@ test1.o $(LDFLAGS) $(LIBS)
52         
53 test2:  test2.o
54         @echo [link]
55         $(CC) -o $@ test2.o $(LDFLAGS) $(LIBS)
56
57 speed:  speed.o
58         @echo [link]
59         $(CC) -o $@ speed.o $(LDFLAGS) $(LIBS)
60
61 lcd:    lcd.o
62         @echo [link]
63         $(CC) -o $@ lcd.o $(LDFLAGS) $(LIBS)
64
65 wfi:    wfi.o
66         @echo [link]
67         $(CC) -o $@ wfi.o $(LDFLAGS) $(LIBS) -lpthread
68
69 piface: piface.o
70         @echo [link]
71         $(CC) -o $@ piface.o $(LDFLAGS) $(LIBS) -lpthread
72
73 gertboard:      gertboard.o
74         @echo [link]
75         $(CC) -o $@ gertboard.o $(LDFLAGS) $(LIBS) -lm
76
77 nes:    nes.o
78         @echo [link]
79         $(CC) -o $@ nes.o $(LDFLAGS) $(LIBS) -lm
80
81 softPwm:        softPwm.o
82         @echo [link]
83         $(CC) -o $@ softPwm.o $(LDFLAGS) $(LIBS) -lm -lpthread
84
85 delayTest:      delayTest.o
86         @echo [link]
87         $(CC) -o $@ delayTest.o $(LDFLAGS) $(LIBS)
88
89
90 .c.o:
91         @echo [CC] $<
92         @$(CC) -c $(CFLAGS) $< -o $@
93
94 clean:
95         rm -f $(OBJ) *~ core tags test1 test2 speed lcd wfi piface gertboard nes delayTest softPwm
96
97 tags:   $(SRC)
98         @echo [ctags]
99         @ctags $(SRC)
100
101 depend:
102         makedepend -Y $(SRC)
103
104 # DO NOT DELETE