aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 5ec0764b0105ba6ed4c5bd6aa2dd398f3c3c3c48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

.POSIX:
include config.mk

all: pgm-interlace

pgm-interlace: pgm-interlace.o

test:
	./test/test.sh

.PHONY: all clean clean-object test
clean: clean-object
	rm -f pgm-interlace

clean-object:
	rm -fv *.o