diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2016-09-27 14:54:12 -0400 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2016-09-27 16:19:26 -0400 |
commit | 0f34a5b42fb6dbbcefcc166a4ad71e8502960cdc (patch) | |
tree | 042e57844f1f52432b27b224ae1d67e0c153bf5d /pkg/launcher/Makefile | |
parent | 40debc7182d9a20cc2a1ec2b6a162a065a3183c0 (diff) |
[pkg] re-add binary launcher to bundle process
Diffstat (limited to 'pkg/launcher/Makefile')
-rw-r--r-- | pkg/launcher/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
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 |