From 3621a04cf020cba747ba75136aec7a575890cceb Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Mon, 26 Aug 2024 09:04:11 +0200 Subject: Huge overhall; fix code; remove external deps --- Makefile | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile deleted file mode 100644 index 03f01c4..0000000 --- a/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -.POSIX: - -CC = cc -CFLAGS = \ - -Wall -Wextra -pedantic -Wshadow -Wpointer-arith -Wcast-align \ - -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations \ - -Wredundant-decls -Wnested-externs -Winline -Wno-long-long \ - -Wconversion -Wstrict-prototypes \ - -O3 -march=native -mtune=native -pipe -LDLIBS = -luriparser -lssl -lcrypto - -PREFIX = /usr/local -DPREFIX = ${DESTDIR}${PREFIX} - -all: totp -totp: main.o b32.o - ${CC} ${LDLIBS} -o $@ main.o b32.o - -main.o: main.c b32.h -b32.o: b32.c b32.h - -install: - mkdir -p ${DPREFIX}/bin ${DPREFIX}/share/man/man1 - cp totp ${DPREFIX}/bin - cp totp.1 ${DPREFIX}/share/man/man1 - -clean: - rm -f totp *.o -- cgit v1.2.3