CC=gcc
CFLAGS=-O -Wall

all: postat

postat: postat.c pohcalls.o

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


