diff options
author | Kali Kaneko <kali@leap.se> | 2016-04-04 17:51:30 -0400 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2016-04-06 17:30:25 -0400 |
commit | 093f84e42192fd8dc2234a00b754515be7ea9016 (patch) | |
tree | 72f9e1ac1fc9ba866e3991ed3d588aee1b6e72e6 /pkg/launcher/Makefile | |
parent | 0ce1c02dd59df3e4f23ba0b90e67644258412533 (diff) |
[pkg] simple launcher for the linux bundles
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 |