summaryrefslogtreecommitdiff
path: root/pkg/launcher/Makefile
blob: 8dd1013d62c3e52b600488f989cf72ecbb5ecd9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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