summaryrefslogtreecommitdiff
path: root/pkg/launcher/Makefile
blob: 2114ec993daecc9ce88786f4afe0ec39654c7514 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
CC = gcc
CFLAGS = -g -Wall -no-pie -fstack-protector-strong
STRIP = strip

default: bitmask

bitmask.o: bitmask-launcher.c
	$(CC) $(CFLAGS) -c bitmask-launcher.c -o bitmask.o

bitmask: bitmask.o
	$(CC) $(CFLAGS) bitmask.o -o bitmask
	$(STRIP) bitmask
clean:
	-rm -f bitmask.o
	-rm -f bitmask