blob: 94e598bf6311b503b4286fbe3e545a8a84d51046 (
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:
tests/lib.a: src/impl.o
|