From: Gordon Henderson Date: Sun, 28 Jul 2013 10:05:28 +0000 (+0100) Subject: Minor changes to the files and removed a bit of debug. X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=wiringPi.git;a=commitdiff_plain;h=f52dd8393ce1c85edb8e4d74d76920417b96c493;ds=sidebyside Minor changes to the files and removed a bit of debug. --- diff --git a/examples/Makefile b/examples/Makefile index 8848b33..571e341 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -36,6 +36,7 @@ LDLIBS = -lwiringPi -lwiringPiDev -lpthread -lm ############################################################################### SRC = blink.c blink8.c blink12.c \ + blink12drcs.c \ pwm.c \ speed.c wfi.c isr.c isr-osc.c \ lcd.c lcd-adafruit.c clock.c \ @@ -63,6 +64,10 @@ blink8: blink8.o @echo [link] @$(CC) -o $@ blink8.o $(LDFLAGS) $(LDLIBS) +blink12drcs: blink12drcs.o + @echo [link] + @$(CC) -o $@ blink12drcs.o $(LDFLAGS) $(LDLIBS) + blink12: blink12.o @echo [link] @$(CC) -o $@ blink12.o $(LDFLAGS) $(LDLIBS)