aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile32
1 files changed, 32 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..1610951
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,32 @@
+.POSIX:
+
+RM := /bin/rm
+DESTDIR := /usr/local/bin
+
+CFLAGS := -std=c99 -Wfloat-equal -Og
+CFLAGS += -Wall -Werror -Wextra -Wpedantic
+CFLAGS += -m64 -no-pie -pipe
+CFLAGS += -ffunction-sections -fdata-sections
+CFLAGS += -D_XOPEN_SOURCE=500L -flto
+CFLAGS += -march=native -mtune=generic
+
+LDFLAGS := -static -Wl,--build-id=none
+LDFLAGS += -ffunction-sections -fdata-sections
+#LDFLAGS += -Wl,--strip-all
+LDFLAGS += -Wl,--flto
+
+.SUFFIXES: .c .o
+
+bstatus: $(FILES) *.o
+ $(CC) $(LDFLAGS) *.o -o bstatus
+
+.c.o:
+ $(CC) $(CFLAGS) -c *.c
+
+clean:
+ $(RM) ./*.o
+
+install:
+ install -s -m0755 bstatus $(DESTDIR)
+
+.PHONY: make clean install