filefiller/Makefile

18 lines
263 B
Makefile
Raw Normal View History

2021-03-31 02:07:37 +02:00
SHELL = /bin/sh
.SUFFIXES = .c
CFLAGS = -Wall -Wextra --std=c99 -Ofast -flto -fPIC -march=native
CC=gcc
STRIP=strip
default:
$(CC) $(CFLAGS) filefiller.c -o filefiller
$(STRIP) ./filefiller
install:
cp filefiller /usr/bin/filefiller
2021-03-31 02:08:39 +02:00
clean:
rm filefiller