-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
61 lines (40 loc) · 1.62 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
################################################################################
#
# PwrUsbCtl Makefile
#
################################################################################
# CLI Sources ##################################################################
PWRUSBCTL_SRCS = src/main.cc
PWRUSBCTL_SRCS += src/power_usb_device.cc
# Binary Targets ###############################################################
PWRUSBCTL_BIN = pwrusbctl
# Common Compiler Flags ########################################################
CFLAGS = -std=c++11
CFLAGS += -Isrc/
CFLAGS += -Wall
# HIDAPI Support ################################################################
# When targetting Linux there are two options given for hidapi, but neither are
# called 'hidapi' which mandates the use of this condition.
HOST_OS = $(shell uname)
ifeq ($(HOST_OS), Linux)
LIBHIDAPI = hidapi-libusb
else
LIBHIDAPI = hidapi
endif
# CLI Compiler Flags ###########################################################
PWRUSBCTL_CFLAGS = $(CFLAGS)
PWRUSBCTL_CFLAGS += `pkg-config --cflags $(LIBHIDAPI)`
# Common Linker Flags ##########################################################
LDFLAGS =
# CLI Linker Flags #############################################################
PWRUSBCTL_LDFLAGS = $(LDFLAGS)
PWRUSBCTL_LDFLAGS += `pkg-config --libs $(LIBHIDAPI)`
PWRUSBCTL_LDFLAGS += -lpthread
# Build Targets ################################################################
all: $(PWRUSBCTL_BIN)
$(PWRUSBCTL_BIN): $(PWRUSBCTL_SRCS)
g++ $^ $(PWRUSBCTL_CFLAGS) $(PWRUSBCTL_LDFLAGS) -o $@
run_pwrusbctl: $(PWRUSBCTL_BIN)
./$(PWRUSBCTL_BIN)
clean:
rm -f $(PWRUSBCTL_BIN)