diff options
author | Tim Segers <tsegers@pm.me> | 2023-08-07 21:53:38 +0200 |
---|---|---|
committer | Tim Segers <tsegers@pm.me> | 2023-08-21 20:54:39 +0200 |
commit | c46ebe4b35e3a0ffebf00b0eaa31b842279396b6 (patch) | |
tree | 9f1d0a6d598dcd00ec6343d3a7dce14afd796432 /Makefile | |
parent | 8bc512bf10a424289e6974627540770f3bcec074 (diff) | |
download | opendeco-c46ebe4b35e3a0ffebf00b0eaa31b842279396b6.tar.gz |
Split gas functions out from deco.c
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 toml/toml.o -OBJ_LIB = src/deco.o src/output.o src/schedule.o -OBJ_TST = test/opendeco_test.o test/deco_test.o src/deco.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 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 LICENSES = minunit/LICENSE.h toml/LICENSE.h |