CC=gcc
CFLAGS=-O -Wall

.PHONY: all
all: postat

postat: postat.c pohcalls.o

.PHONY: clean
clean:
	$(RM) -f *.o postat *.s *~


