summaryrefslogtreecommitdiff
path: root/deps.mk
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--deps.mk33
1 files changed, 33 insertions, 0 deletions
diff --git a/deps.mk b/deps.mk
new file mode 100644
index 0000000..3eed9ad
--- /dev/null
+++ b/deps.mk
@@ -0,0 +1,33 @@
+catalogs.en.msg =
+catalogs.msg = $(catalogs.en.msg)
+
+
+sources.c = \
+ src/impl.c \
+ src/lib.c \
+
+tests.c = \
+ tests/impl.c \
+ tests/lib.c \
+
+src/impl.o: src/impl.h
+src/lib.o: src/lib.h
+
+tests/impl.o: src/impl.c src/impl.h
+tests/lib.o: src/lib.c src/lib.h
+
+tests/impl.a: tests/impl.o
+tests/lib.a: tests/lib.o
+
+tests/impl.bin-check: tests/impl.bin
+tests/lib.bin-check: tests/lib.bin
+
+
+src/impl.o:
+src/lib.o: src/impl.h
+
+tests/impl.o:
+tests/lib.o: src/impl.h
+
+tests/impl.a: src/random.o
+tests/lib.a: src/impl.o src/random.o