aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: fb7ef82fc98d6355076aecaeeb83d43cbf57d26a (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.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