From 093f84e42192fd8dc2234a00b754515be7ea9016 Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Mon, 4 Apr 2016 17:51:30 -0400 Subject: [pkg] simple launcher for the linux bundles --- 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 00000000..8dd1013d --- /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