chiark / gitweb /
Big update here.
[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 LDLIBS    = -lwiringPi
34
35 # Should not alter anything below this line
36 ###############################################################################
37
38 SRC     =       test1.c test2.c speed.c lcd.c wfi.c             \
39                 piface.c gertboard.c nes.c                      \
40                 pwm.c tone.c servo.c                            \
41                 delayTest.c serialRead.c okLed.c
42
43 OBJ     =       $(SRC:.c=.o)
44
45 BINS    =       $(SRC:.c=)
46
47 all:    
48         @cat README.TXT
49         @echo "    $(BINS)" | fmt
50         @echo ""
51
52 test1:  test1.o
53         @echo [link]
54         @$(CC) -o $@ test1.o $(LDFLAGS) $(LDLIBS)
55         
56 test2:  test2.o
57         @echo [link]
58         @$(CC) -o $@ test2.o $(LDFLAGS) $(LDLIBS)
59
60 speed:  speed.o
61         @echo [link]
62         @$(CC) -o $@ speed.o $(LDFLAGS) $(LDLIBS)
63
64 lcd:    lcd.o
65         @echo [link]
66         @$(CC) -o $@ lcd.o $(LDFLAGS) $(LDLIBS)
67
68 wfi:    wfi.o
69         @echo [link]
70         @$(CC) -o $@ wfi.o $(LDFLAGS) $(LDLIBS)
71
72 piface: piface.o
73         @echo [link]
74         @$(CC) -o $@ piface.o $(LDFLAGS) $(LDLIBS) -lpthread
75
76 gertboard:      gertboard.o
77         @echo [link]
78         @$(CC) -o $@ gertboard.o $(LDFLAGS) $(LDLIBS) -lm
79
80 nes:    nes.o
81         @echo [link]
82         @$(CC) -o $@ nes.o $(LDFLAGS) $(LDLIBS) -lm
83
84 pwm:    pwm.o
85         @echo [link]
86         @$(CC) -o $@ pwm.o $(LDFLAGS) $(LDLIBS) -lm -lpthread
87
88 delayTest:      delayTest.o
89         @echo [link]
90         @$(CC) -o $@ delayTest.o $(LDFLAGS) $(LDLIBS)
91
92 serialRead:     serialRead.o
93         @echo [link]
94         @$(CC) -o $@ serialRead.o $(LDFLAGS) $(LDLIBS)
95
96 okLed:  okLed.o
97         @echo [link]
98         @$(CC) -o $@ okLed.o $(LDFLAGS) $(LDLIBS)
99
100 tone:   tone.o
101         @echo [link]
102         @$(CC) -o $@ tone.o $(LDFLAGS) $(LDLIBS)
103
104 servo:  servo.o
105         @echo [link]
106         @$(CC) -o $@ servo.o $(LDFLAGS) $(LDLIBS)
107
108
109 .c.o:
110         @echo [CC] $<
111         @$(CC) -c $(CFLAGS) $< -o $@
112
113 clean:
114         rm -f $(OBJ) *~ core tags $(BINS)
115
116 tags:   $(SRC)
117         @echo [ctags]
118         @ctags $(SRC)
119
120 depend:
121         makedepend -Y $(SRC)
122
123 # DO NOT DELETE