Compare commits

..

1 Commits

Author SHA1 Message Date
Thomas Klaehn
1d358b1086 Convert to library 2019-07-17 00:14:47 +02:00
2 changed files with 3 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
bin/
lib/
obj/
coverage/

View File

@ -1,5 +1,6 @@
CROSS_COMPILE ?=
TARGET_FILE ?= ftdi_gpio
STATIC_LIB_FILE ?= libftdi_gpio.a
DYNAMIC_LIB_FILE ?= libftdi_gpio.so
@ -12,6 +13,7 @@ GENHTML = genhtml
SRC_DIR = src
OBJ_DIR = obj
LIB_DIR = lib
BIN_DIR = bin
COVERAGE_DIR = coverage
UNIT_TEST_SRC_DIR = test/unit
UNIT_TEST_OBJ_DIR = $(OBJ_DIR)/$(UNIT_TEST_SRC_DIR)