CC=gcc
CFLAGS=-std=c99 -W
INPUT=pack.c
OUTPUT=pack

all:
	$(CC) $(INPUT) -o $(OUTPUT) $(CFLAGS)

clean:
	rm -r $(OUTPUT)