chiark / gitweb /
Changed the build system to drop I2C for now. Seems to cause too many issues
[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 -lpthread -lm
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 # Note:
48 #       Please don't waste your time by emailling me or doing a
49 #       pull request with changes to make all these targets. It
50 #       is intentional that I do it this way as it now takes too
51 #       long to compile them all and most people will not run
52 #       them anyway... -GH-
53
54 all:    
55         @cat README.TXT
56         @echo "    $(BINS)" | fmt
57         @echo ""
58
59 test1:  test1.o
60         @echo [link]
61         @$(CC) -o $@ test1.o $(LDFLAGS) $(LDLIBS)
62         
63 test2:  test2.o
64         @echo [link]
65         @$(CC) -o $@ test2.o $(LDFLAGS) $(LDLIBS)
66
67 speed:  speed.o
68         @echo [link]
69         @$(CC) -o $@ speed.o $(LDFLAGS) $(LDLIBS)
70
71 lcd:    lcd.o
72         @echo [link]
73         @$(CC) -o $@ lcd.o $(LDFLAGS) $(LDLIBS)
74
75 wfi:    wfi.o
76         @echo [link]
77         @$(CC) -o $@ wfi.o $(LDFLAGS) $(LDLIBS)
78
79 isr:    isr.o
80         @echo [link]
81         @$(CC) -o $@ isr.o $(LDFLAGS) $(LDLIBS)
82
83 piface: piface.o
84         @echo [link]
85         @$(CC) -o $@ piface.o $(LDFLAGS) $(LDLIBS)
86
87 gertboard:      gertboard.o
88         @echo [link]
89         @$(CC) -o $@ gertboard.o $(LDFLAGS) $(LDLIBS)
90
91 nes:    nes.o
92         @echo [link]
93         @$(CC) -o $@ nes.o $(LDFLAGS) $(LDLIBS) 
94
95 pwm:    pwm.o
96         @echo [link]
97         @$(CC) -o $@ pwm.o $(LDFLAGS) $(LDLIBS)
98
99 delayTest:      delayTest.o
100         @echo [link]
101         @$(CC) -o $@ delayTest.o $(LDFLAGS) $(LDLIBS)
102
103 serialRead:     serialRead.o
104         @echo [link]
105         @$(CC) -o $@ serialRead.o $(LDFLAGS) $(LDLIBS)
106
107 serialTest:     serialTest.o
108         @echo [link]
109         @$(CC) -o $@ serialTest.o $(LDFLAGS) $(LDLIBS)
110
111 okLed:  okLed.o
112         @echo [link]
113         @$(CC) -o $@ okLed.o $(LDFLAGS) $(LDLIBS)
114
115 tone:   tone.o
116         @echo [link]
117         @$(CC) -o $@ tone.o $(LDFLAGS) $(LDLIBS)
118
119 servo:  servo.o
120         @echo [link]
121         @$(CC) -o $@ servo.o $(LDFLAGS) $(LDLIBS)
122
123
124 .c.o:
125         @echo [CC] $<
126         @$(CC) -c $(CFLAGS) $< -o $@
127
128 clean:
129         rm -f $(OBJ) *~ core tags $(BINS)
130
131 tags:   $(SRC)
132         @echo [ctags]
133         @ctags $(SRC)
134
135 depend:
136         makedepend -Y $(SRC)
137
138 # DO NOT DELETE