summaryrefslogtreecommitdiff
path: root/Makefile
blob: 637e94d7031a961649c52b8c55c39509472f07f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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