diff options
author | dec05eba <dec05eba@protonmail.com> | 2020-01-14 07:27:47 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-01-14 07:27:47 +0100 |
commit | e27bd78c8211532bf0d39d87d2051222f7e86e26 (patch) | |
tree | 631c050014070e52519798b228770f578b4c0a59 /Makefile |
start
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..9176922 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +CFLAGS=-Wall -Wextra -g3 + +all: main.o tokenizer.o + cc -o tsl main.o tokenizer.o -fPIE + +main.o: src/main.c include/tokenizer.h + cc -c src/main.c $(CFLAGS) + +tokenizer.o: src/tokenizer.c include/tokenizer.h + cc -c src/tokenizer.c $(CFLAGS) |