CC = gcc
CFLAGS = -Wall -O
BOBJ = encrypt.o screenio.o billing.o
MOBJ = menumake.o
BIN = billing menumake

all: $(BIN)
clean: 	cleanobj
	rm -f core $(BIN) *~
cleanobj:
	rm -f core $(BOBJ) $(MOBJ)

billing: $(BOBJ)
menumake: $(MOBJ)
menumake.o: menumake.c billing.h
billing.o: billing.c billing.h
encrypt.o: encrypt.c encrypt.h
screenio.o: screenio.c screenio.h
