12 lines
201 B
Makefile
12 lines
201 B
Makefile
CC=cc
|
|
CFLAGS=-Wall -Wextra -pedantic -std=c99 -D_XOPEN_SOURCE=600
|
|
OBJS=matte.o minmattefunk.o usage.o
|
|
|
|
matte: $(OBJS)
|
|
$(CC) -o matte $(OBJS)
|
|
|
|
matte.o: minmattefunk.h usage.h
|
|
|
|
clean:
|
|
rm matte $(OBJS)
|