aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: dcd38c372a191ce1510c6381018315fd87517858 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
PROGRAM_NAME=diff-dd
PROGRAM_VERSION=1.0

export PROGRAM_NAME
export PROGRAM_VERSION

all:
	$(MAKE) -C src all

.PHONY: test clean

test: all
	$(MAKE) -C tests

clean:
	$(MAKE) -C src clean