You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
511 B
20 lines
511 B
8 years ago
|
#
|
||
|
# Makefile:
|
||
|
#################################################################################
|
||
|
|
||
|
|
||
|
#DEBUG = -g -O0
|
||
|
DEBUG = -O3
|
||
|
CC = gcc
|
||
|
INCLUDE = -I/usr/local/include
|
||
|
CFLAGS = $(DEBUG) -Wall $(INCLUDE) -Winline -pipe
|
||
|
|
||
|
LDFLAGS = -L/usr/local/lib
|
||
|
LDLIBS = -lwiringPi -lwiringPiDev -lpthread -lm
|
||
|
|
||
|
# Should not alter anything below this line
|
||
|
###############################################################################
|
||
|
|
||
|
SRC = i2c_challenge.c \
|
||
|
|