actionpro-cli/config.mk

11 lines
181 B
Makefile
Raw Permalink Normal View History

2021-08-12 13:06:08 +02:00
# includes and libs
INCS = -I. -I/usr/include
LIBS = -L/usr/lib -lusb-1.0
# flags
CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS}
LDFLAGS = -s ${LIBS}
# compiler and linker
CC = cc