diff options
author | Tim Segers <tsegers@pm.me> | 2023-08-08 20:48:27 +0200 |
---|---|---|
committer | Tim Segers <tsegers@pm.me> | 2023-08-21 20:54:41 +0200 |
commit | b4582977251dbf07c13c4d69a4f7be04e75612d6 (patch) | |
tree | 5d49111f98766bf06302b4dea851d580ae78d319 /Makefile | |
parent | c46ebe4b35e3a0ffebf00b0eaa31b842279396b6 (diff) | |
download | opendeco-develop.tar.gz |
Split unit conversion functions out from deco.cdevelop
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -10,9 +10,9 @@ LDFLAGS = $(LFLAGS) PREFIX = /usr/local -OBJ_BIN = src/opendeco.o src/opendeco-cli.o src/opendeco-conf.o src/deco.o src/output.o src/schedule.o src/gas.o toml/toml.o -OBJ_LIB = src/deco.o src/output.o src/schedule.o src/gas.o -OBJ_TST = test/opendeco_test.o test/deco_test.o src/deco.o src/gas.o minunit/minunit.o +OBJ_BIN = src/opendeco.o src/opendeco-cli.o src/opendeco-conf.o src/deco.o src/output.o src/schedule.o src/gas.o src/units.o toml/toml.o +OBJ_LIB = src/deco.o src/output.o src/schedule.o src/gas.o src/units.o +OBJ_TST = test/opendeco_test.o test/deco_test.o src/deco.o src/gas.o src/units.o minunit/minunit.o LICENSES = minunit/LICENSE.h toml/LICENSE.h |