about summary refs log tree commit diff
path: root/Makefile
blob: e252f551b42293854b8b17e889683024c74d790a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
CC=cc
CFLAGS=-Wall -Wextra -Werror -O2 -s
TARGET=fjorker

all: $(TARGET)

$(TARGET): main.c
	$(CC) $(CFLAGS) -o $(TARGET) main.c

install: $(TARGET)
	install -m 755 $(TARGET) /usr/local/bin/

clean:
	rm -f $(TARGET)

.PHONY: all clean install