]> git.sesse.net Git - bmusb/blob - Makefile
Add support for persistent USB device memory.
[bmusb] / Makefile
1 CXXFLAGS := -std=gnu++14 -O2 -march=native -Wall -g $(shell pkg-config libusb-1.0 --cflags) -pthread
2 LDFLAGS := $(shell pkg-config libusb-1.0 --libs) -pthread
3
4 main: bmusb.o main.o
5         $(CXX) -o main $^ $(LDFLAGS)
6
7 all: main
8