Skip to content

Commit

Permalink
Makefile: add libudev since this library is used to retrieve vid, pid…
Browse files Browse the repository at this point in the history
…, descriptor, bus and addr from a device node
  • Loading branch information
trabucayre committed Nov 19, 2019
1 parent 711833d commit 16806cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
EXEC_NAME=cycloader
SRC= $(wildcard *.cpp)
OBJS= $(SRC:.cpp=.o)
LDFLAGS=-lm -g -Wall -std=c++11 $(shell pkg-config --libs libftdipp1)
CXXFLAGS=-g -Wall -std=c++11 $(shell pkg-config --cflags 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 libudev)

all:$(EXEC_NAME)

Expand Down

0 comments on commit 16806cb

Please sign in to comment.