aboutsummaryrefslogtreecommitdiffstats
path: root/gadgets/config.mk
blob: 9dd76971e4a5a562ca7213e779016f85cb8c3a1a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Customize below to fit your system

# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man

INCS = -I. -I/usr/include

LIBS = -L/usr/lib 
CFLAGS = -Os ${INCS} 
LDFLAGS = ${LIBS}

# compiler and linker
CC = gcc
LD = ${CC}