summaryrefslogtreecommitdiff
path: root/deps.mk
blob: 3eed9adda77d88049c8c7952d9d191aa4ce81b34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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