aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 392a748ef21a6c4b1f579837ce36690c41d86926 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
CFLAGS ?= -O3 -march=native -pipe

CFLAGS += -std=c99 $(shell pkg-config --cflags libusb-1.0)
LDLIBS = $(shell pkg-config --libs libusb-1.0)

all: test

hasplib.c: hasplib.h
hasplib-simple.c: hasplib.c hasplib.h

test: hasplib.c hasplib-simple.c test.c

clean:
	@rm -fv test

.PHONY: all clean