diff options
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 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 | 
