Adding base

This commit is contained in:
2024-03-01 14:21:49 +01:00
parent f2f081bd42
commit 9dcdbcdc5e
2 changed files with 141 additions and 0 deletions

13
Makefile Normal file
View File

@ -0,0 +1,13 @@
CC=clang
CFLAGS=-pedantic -Wall -Wextra -std=c99 -D_GNU_SOURCE -O3
all: shorten
shorten: shorten.o
$(CC) $(CFLAGS) -o $@ $^
%.o: %.c
$(CC) $(CFLAGS) -c $< -o $@
clean:
rm *.o