.POSIX:
include config.mk

all: pgm-interlace

pgm-interlace: pgm-interlace.o
	$(CC) -o $@ $< $(LDFLAGS)

test: all
	./test/test.sh

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

clean-object:
	rm -f *.o