From b1e9dd9e3cc6e1c45419a3534a1657202e5b1de4 Mon Sep 17 00:00:00 2001 From: David Vazgenovich Shakaryan Date: Thu, 16 Jan 2020 01:31:22 -0800 Subject: add COPYING and Makefile --- Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..637e94d --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +CFLAGS += -O2 -Wall + +TARGET = journal + +SRC = $(wildcard *.c) +OBJ = $(SRC:.c=.o) + +all: $(TARGET) + +$(TARGET): $(OBJ) + +clean: + rm -f $(TARGET) $(OBJ) + +.PHONY: all clean -- cgit v1.2.3-70-g09d2