CFLAGS = -g -Wall -Wstrict-prototypes

LDFLAGS = -g

LIBS = libapue.a

.PHONY: default
default: wait1

.PHONY: clean
clean:
	rm -f $(OBJS) core a.out *~

.PHONY: immaculate
immaculate: clean
	rm -f wait1

wait1: wait1.o
	$(CC) $(LDFLAGS) -o $@ $< $(LIBS)

$(OBJS): apue.h
