diff options
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/makefile b/makefile new file mode 100644 index 0000000..5b5889b --- /dev/null +++ b/makefile @@ -0,0 +1,26 @@ +DESTDIR=/ +CC=cc +MYCFLAGS=-Ofast -march=native -Wall -Wextra -Wformat -pedantic -g -I. # -fsanitize=address +MYLDFLAGS=-lpthread + +default: ebs disass + +ebs: main.c ebs.c + $(CC) $(MYCFLAGS) $(CFLAGS) main.c -o$@ $(MYLDFLAGS) $(LDFLAGS) + +disass: disass + $(CC) $(MYCFLAGS) $(CFLAGS) disass.c -o$@ $(MYLDFLAGS) $(LDFLAGS) + +install: + mkdir -p $(DESTDIR)/usr/bin/ + cp ebs $(DESTDIR)/usr/bin/ + +distclean: clean + +clean: + rm -rf ebs tmp + +valgrind: + valgrind --error-exitcode=59 --leak-check=full --show-leak-kinds=all --track-origins=yes --verbose --log-file=valgrind-out.txt $(CMD) + +.PHONY: default install distclean clean valgrind ebs disass |