CC = cc
CFLAGS = -g -Aa

all: unpack.exe

unpack.exe: unpack.c	
	$(CC) $(CFLAGS) -o unpack.exe unpack.c
