first commit
This commit is contained in:
commit
9b1fe95a8e
7 changed files with 234 additions and 0 deletions
13
Makefile
Normal file
13
Makefile
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue