1
0
mirror of https://github.com/MatMoul/g810-led.git synced 2024-12-23 01:06:11 +00:00

update makefile

This commit is contained in:
MatMoul 2016-06-12 22:36:21 +02:00
parent fdc8220e70
commit 634b91c039

View File

@ -2,8 +2,10 @@ CC=g++
CFLAGS=
LDFLAGS=-lusb-1.0
all: make bin/g810-led
all: bin/g810-led
make:
mkdir bin
bin/g810-led: src/main.cpp src/classes/*
$(CC) -o $@ $^ $(LDFLAGS)