passt/Makefile

11 lines
126 B
Makefile
Raw Normal View History

CFLAGS += -Wall -Wextra -pedantic
all: merd
merd: merd.c
$(CC) $(CFLAGS) merd.c -o merd
.PHONY: clean
clean:
-${RM} merd