aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Tim Segers <tsegers@pm.me>2023-01-01 15:19:26 +0100
committerGravatar Tim Segers <tsegers@pm.me>2023-01-02 16:01:28 +0100
commita427ec3ca15c6eb61a405020dc45aac32bc45ce8 (patch)
tree40839702d79d3295878c0a86dfcb8b557ed30d94 /Makefile
parentb98ef9a0cc52538a62f7f15d6ab28a2e98751c50 (diff)
downloadopendeco-a427ec3ca15c6eb61a405020dc45aac32bc45ce8.tar.gz
Move minunit to separate directory
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 34d11b5..6cfb8e6 100644
--- a/Makefile
+++ b/Makefile
@@ -8,8 +8,8 @@ all: opendeco opendeco_test libopendeco.a
opendeco: src/opendeco.c src/deco.c src/deco.h src/schedule.c src/schedule.h src/output.c src/output.h src/opendeco-cli.h src/opendeco-cli.c src/opendeco-conf.h src/opendeco-conf.c toml/toml.c toml/toml.h
$(CC) $(CFLAGS) src/opendeco.c src/deco.c src/schedule.c src/output.c src/opendeco-cli.c src/opendeco-conf.c toml/toml.c -lm -o opendeco
-opendeco_test: test/opendeco_test.c test/deco_test.c src/deco.c
- $(CC) $(CFLAGS) test/minunit.c test/opendeco_test.c test/deco_test.c src/deco.c -lm -o opendeco_test
+opendeco_test: test/opendeco_test.c test/deco_test.c src/deco.c minunit/minunit.c minunit/minunit.h
+ $(CC) $(CFLAGS) minunit/minunit.c test/opendeco_test.c test/deco_test.c src/deco.c -lm -o opendeco_test
libopendeco.a:
$(CC) -c src/deco.c -o src/deco.o