chiark / gitweb /
Lots of changes here. Added new I2C test code, a new serialTest program,
[wiringPi.git] / gpio / 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   = -O2
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 -lpthread
34
35 # May not need to  alter anything below this line
36 ###############################################################################
37
38 SRC     =       gpio.c
39
40 OBJ     =       $(SRC:.c=.o)
41
42 all:            gpio
43
44 gpio:   gpio.o
45         @echo [Link]
46         @$(CC) -o $@ gpio.o $(LDFLAGS) $(LIBS)
47         
48 .c.o:
49         @echo [Compile] $<
50         @$(CC) -c $(CFLAGS) $< -o $@
51
52 .PHONEY:        clean
53 clean:
54         rm -f $(OBJ) gpio *~ core tags *.bak
55
56 .PHONEY:        tags
57 tags:   $(SRC)
58         @echo [ctags]
59         @ctags $(SRC)
60
61 .PHONEY:        install
62 install:
63         @echo "[Install]"
64         @cp gpio /usr/local/bin
65         @chown root.root /usr/local/bin/gpio
66         @chmod 4755 /usr/local/bin/gpio
67         @mkdir -p /usr/local/man/man1
68         @cp gpio.1 /usr/local/man/man1
69
70 .PHONEY:        uninstall
71 uninstall:
72         @echo "[UnInstall]"
73         rm -f /usr/local/bin/gpio
74         rm -f /usr/local/man/man1/gpio.1
75
76 .PHONEY:        depend
77 depend:
78         makedepend -Y $(SRC)
79
80 # DO NOT DELETE