-
Notifications
You must be signed in to change notification settings - Fork 5
/
Makefile
53 lines (36 loc) · 1.31 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
################################################################################
#
# iChargerMon Makefile
#
################################################################################
# Sources ######################################################################
SRCS = src/main.cpp
SRCS += src/serial_icharger.cpp
SRCS += src/serial_icharger_state.cpp
SRCS += src/mod_bus_icharger.cpp
# Binary Targets ###############################################################
BIN = ichargermon
# Compiler Flags ###############################################################
CFLAGS = -std=c++11
CFLAGS += -Isrc/
CFLAGS += -Wall
CFLAGS += `pkg-config --cflags $(LIBHIDAPI)`
# 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
# Linker Flags #################################################################
LDFLAGS = `pkg-config --libs $(LIBHIDAPI)`
# Build Targets ################################################################
all: $(BIN)
$(BIN): $(SRCS)
g++ $(CFLAGS) $(LDFLAGS) $^ -o $@
run_ichargermon: $(BIN)
./$(BIN)
clean:
rm -f $(BIN)