Makefile: add libudev since this library is used to retrieve vid, pid, descriptor, bus and addr from a device node
This commit is contained in:
parent
711833d034
commit
16806cbc4f
4
Makefile
4
Makefile
|
|
@ -1,8 +1,8 @@
|
||||||
EXEC_NAME=cycloader
|
EXEC_NAME=cycloader
|
||||||
SRC= $(wildcard *.cpp)
|
SRC= $(wildcard *.cpp)
|
||||||
OBJS= $(SRC:.cpp=.o)
|
OBJS= $(SRC:.cpp=.o)
|
||||||
LDFLAGS=-lm -g -Wall -std=c++11 $(shell pkg-config --libs libftdipp1)
|
LDFLAGS=-lm -g -Wall -std=c++11 $(shell pkg-config --libs libftdipp1 libudev)
|
||||||
CXXFLAGS=-g -Wall -std=c++11 $(shell pkg-config --cflags libftdipp1)
|
CXXFLAGS=-g -Wall -std=c++11 $(shell pkg-config --cflags libftdipp1 libudev)
|
||||||
|
|
||||||
all:$(EXEC_NAME)
|
all:$(EXEC_NAME)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue