Create Makefile

This commit is contained in:
Rhizome 2024-04-08 18:45:40 +01:00
parent ad616dd980
commit ad3af167b1

11
Makefile Normal file
View File

@ -0,0 +1,11 @@
.POSIX:
CFLAGS += -Wall -Wextra -pedantic -std=c99
#CFLAGS += -ggdb
CFLAGS += -flto -O2
rotagen: rotagen.o Makefile
$(CC) $(CFLAGS) $(LDFLAGS) -o rotagen rotagen.o
rotagen.o: rotagen.c rotagen.h Makefile