first commit

This commit is contained in:
Eric 2025-05-26 00:06:22 +02:00
commit 9b1fe95a8e
7 changed files with 234 additions and 0 deletions

13
Makefile Normal file
View file

@ -0,0 +1,13 @@
CFLAGS = -g -Wall -Wextra -Werror
objects = main.o input.o trans.o
b64 : $(objects)
cc -o b64 $(objects)
main.o trans.o input.o : input.h
main.o trans.o : trans.h
.PHONY : clean
clean :
rm -f b64 $(objects)