PROJ=greeting

CC=cc
INCLUDES=-Ilib
DEFS=-U_FORTIFY_SOURCE=0 -fno-stack-protectors
CFLAGS=-Os -Wall
SRCS=greeting.c

all:
	$(CC) $(SRCS) $(INCLUDES) $(DEFS) $(CFLAGS) -m32 -no-pie -o $(PROJ)

clean:
	rm -rf *.out *.bin *.exe *.o *.a *.so *.list *.img test build $(PROJ)