diff options
Diffstat (limited to '')
-rw-r--r-- | deps.mk | 33 |
1 files changed, 33 insertions, 0 deletions
@@ -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 |