aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 1858fb44cca026a50fe6b4eda8923062060194d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all: pgm-interlace

pgm-interlace: pgm-interlace.o
	$(CC) -o $@ $^

%.o: %.c
	$(CC) -c -o $@ $< #-Wall -Wextra #-Werror

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

clean-object:
	rm -fv *.o **/*.o