1
0
mirror of https://github.com/corundum/corundum.git synced 2025-01-30 08:32:52 +08:00
corundum/utils/Makefile

22 lines
233 B
Makefile
Raw Normal View History

2019-07-17 18:48:50 -07:00
PREFIX=/usr/local
BINDIR=$(DESTDIR)$(PREFIX)/bin
CC=gcc
CFLAGS=-O3 -Wall
BIN=perout
all: $(BIN)
perout: perout.c
$(CC) $(CFLAGS) $^ -o $@
install:
install -d $(BINDIR)
install -m 0755 $(BIN) $(BINDIR)
clean:
rm -f $(BIN)