From 0f34a5b42fb6dbbcefcc166a4ad71e8502960cdc Mon Sep 17 00:00:00 2001 From: "Kali Kaneko (leap communications)" Date: Tue, 27 Sep 2016 14:54:12 -0400 Subject: [pkg] re-add binary launcher to bundle process --- pkg/launcher/Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 pkg/launcher/Makefile (limited to 'pkg/launcher/Makefile') diff --git a/pkg/launcher/Makefile b/pkg/launcher/Makefile new file mode 100644 index 0000000..8dd1013 --- /dev/null +++ b/pkg/launcher/Makefile @@ -0,0 +1,15 @@ +CC = gcc +CFLAGS = -g -Wall +STRIP = strip + +default: bitmask + +bitmask.o: bitmask-launcher.c + $(CC) $(CFLAGS) -c bitmask-launcher.c -o bitmask.o + +bitmask: bitmask.o + $(CC) bitmask.o -o bitmask + $(STRIP) bitmask +clean: + -rm -f bitmask.o + -rm -f bitmask -- cgit v1.2.3