chiark / gitweb /
Added software PWM module into wiringPi - library code
[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 all:            test1 test2 speed lcd wfi piface gertboard nes softPwm
43
44 test1:  test1.o
45         @echo [link]
46         $(CC) -o $@ test1.o $(LDFLAGS) $(LIBS)
47         
48 test2:  test2.o
49         @echo [link]
50         $(CC) -o $@ test2.o $(LDFLAGS) $(LIBS)
51
52 speed:  speed.o
53         @echo [link]
54         $(CC) -o $@ speed.o $(LDFLAGS) $(LIBS)
55
56 lcd:    lcd.o
57         @echo [link]
58         $(CC) -o $@ lcd.o $(LDFLAGS) $(LIBS)
59
60 wfi:    wfi.o
61         @echo [link]
62         $(CC) -o $@ wfi.o $(LDFLAGS) $(LIBS) -lpthread
63
64 piface: piface.o
65         @echo [link]
66         $(CC) -o $@ piface.o $(LDFLAGS) $(LIBS) -lpthread
67
68 gertboard:      gertboard.o
69         @echo [link]
70         $(CC) -o $@ gertboard.o $(LDFLAGS) $(LIBS) -lm
71
72 nes:    nes.o
73         @echo [link]
74         $(CC) -o $@ nes.o $(LDFLAGS) $(LIBS) -lm
75
76 softPwm:        softPwm.o
77         @echo [link]
78         $(CC) -o $@ softPwm.o $(LDFLAGS) $(LIBS) -lm -lpthread
79
80
81 delayTest:      delayTest.o
82         @echo [link]
83         $(CC) -o $@ delayTest.o $(LDFLAGS) $(LIBS)
84
85
86 .c.o:
87         @echo [CC] $<
88         @$(CC) -c $(CFLAGS) $< -o $@
89
90 clean:
91         rm -f $(OBJ) *~ core tags test1 test2 speed lcd wfi piface gertboard nes delayTest softPwm
92
93 tags:   $(SRC)
94         @echo [ctags]
95         @ctags $(SRC)
96
97 depend:
98         makedepend -Y $(SRC)
99
100 # DO NOT DELETE