binutils: update to 2.43.1
[openadk.git] / package / wiringPi / patches / patch-gpio_Makefile
blob01848cf679d510dd8ddfde3c7e37e54a1e84371a
1 --- wiringPi-72b2af231be337d45a557ce6ca3ed1eeb6675ffd.orig/gpio/Makefile        2015-02-11 09:58:24.000000000 +0100
2 +++ wiringPi-72b2af231be337d45a557ce6ca3ed1eeb6675ffd/gpio/Makefile     2015-02-11 10:18:57.776739248 +0100
3 @@ -28,11 +28,11 @@ PREFIX=/local
4  
5  #DEBUG = -g -O0
6  DEBUG  = -O2
7 -CC     = gcc
8 +CC     ?= gcc
9  INCLUDE        = -I$(DESTDIR)$(PREFIX)/include
10 -CFLAGS = $(DEBUG) -Wall $(INCLUDE) -Winline -pipe
11 +CFLAGS ?= -Wall $(INCLUDE) -Winline
13 -LDFLAGS        = -L$(DESTDIR)$(PREFIX)/lib
14 +LDFLAGS        = -L../wiringPi -L../devLib
15  LIBS    = -lwiringPi -lwiringPiDev -lpthread -lm
17  # May not need to  alter anything below this line
18 @@ -49,11 +49,11 @@ version.h:  ../VERSION
20  gpio:  $(OBJ)
21         @echo [Link]
22 -       @$(CC) -o $@ $(OBJ) $(LDFLAGS) $(LIBS)
23 +       $(CC) -o $@ $(OBJ) $(LDFLAGS) $(LIBS)
24         
25  .c.o:
26         @echo [Compile] $<
27 -       @$(CC) -c $(CFLAGS) $< -o $@
28 +       $(CC) -c $(CPPFLAGS) $(CFLAGS) $< -o $@
30  .PHONY:        clean
31  clean: