This commit is contained in:
Gerolf Ziegenhain 2016-10-04 20:45:48 +02:00
parent 1145e2769e
commit af81f9a084
2 changed files with 5 additions and 4 deletions

View File

@ -1,6 +1,6 @@
SRC = irmc.c cwprotocol.c beep.c util.c
OBJ = ${SRC:.c=.o}
LDFLAGS = -lportaudio -lpthread -lm -lwiringPi
LDFLAGS = -lportaudio -lpthread -lm
CFLAGS = -Wall -Wno-format-zero-length
INSTALLDIR = ${HOME}/bin
@ -21,6 +21,9 @@ irmc: ${OBJ}
@echo CC -o $@
@${CC} -o $@ ${OBJ} ${LDFLAGS}
raspi: ${OBJ}
@${CC} -o irmc ${OBJ} ${LDFLAGS} -lwiringPi
java:
java -jar test/MorseKOB.jar

View File

@ -24,12 +24,10 @@
#include "beep.h"
#include "util.h"
// http://raspberrypiguide.de/howtos/raspberry-pi-gpio-how-to/
#define RASPI
// http://raspberrypiguide.de/howtos/raspberry-pi-gpio-how-to/
#ifdef RASPI
#include <wiringPi.h>
#endif