chiark / gitweb /
Lots of changes here. Added new I2C test code, a new serialTest program,
[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 isr.c       \
39                 piface.c gertboard.c nes.c                      \
40                 pwm.c tone.c servo.c                            \
41                 delayTest.c serialRead.c serialTest.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 isr:    isr.o
73         @echo [link]
74         @$(CC) -o $@ isr.o $(LDFLAGS) $(LDLIBS)
75
76 piface: piface.o
77         @echo [link]
78         @$(CC) -o $@ piface.o $(LDFLAGS) $(LDLIBS) -lpthread
79
80 gertboard:      gertboard.o
81         @echo [link]
82         @$(CC) -o $@ gertboard.o $(LDFLAGS) $(LDLIBS) -lm
83
84 nes:    nes.o
85         @echo [link]
86         @$(CC) -o $@ nes.o $(LDFLAGS) $(LDLIBS) -lm
87
88 pwm:    pwm.o
89         @echo [link]
90         @$(CC) -o $@ pwm.o $(LDFLAGS) $(LDLIBS) -lm -lpthread
91
92 delayTest:      delayTest.o
93         @echo [link]
94         @$(CC) -o $@ delayTest.o $(LDFLAGS) $(LDLIBS)
95
96 serialRead:     serialRead.o
97         @echo [link]
98         @$(CC) -o $@ serialRead.o $(LDFLAGS) $(LDLIBS)
99
100 serialTest:     serialTest.o
101         @echo [link]
102         @$(CC) -o $@ serialTest.o $(LDFLAGS) $(LDLIBS)
103
104 okLed:  okLed.o
105         @echo [link]
106         @$(CC) -o $@ okLed.o $(LDFLAGS) $(LDLIBS)
107
108 tone:   tone.o
109         @echo [link]
110         @$(CC) -o $@ tone.o $(LDFLAGS) $(LDLIBS)
111
112 servo:  servo.o
113         @echo [link]
114         @$(CC) -o $@ servo.o $(LDFLAGS) $(LDLIBS)
115
116
117 .c.o:
118         @echo [CC] $<
119         @$(CC) -c $(CFLAGS) $< -o $@
120
121 clean:
122         rm -f $(OBJ) *~ core tags $(BINS)
123
124 tags:   $(SRC)
125         @echo [ctags]
126         @ctags $(SRC)
127
128 depend:
129         makedepend -Y $(SRC)
130
131 # DO NOT DELETE