## makefile for djgpp ##
CC=gcc
CFLAGS=-Wall
# for debugging
#CFLAGS=-Wall -DDEBUG
#############
BASE=liball03
#############
LIBRARY=../lib/$(BASE).a
OBJS=all03.o all03ft.o keys.o sleep.o 

$(LIBRARY): $(OBJS)
	rm -f $(LIBRARY)
	ar rvs $(LIBRARY) $(OBJS)

clean:
	rm -f *.o *.exe *~ *$$
	rm -f $(LIBRARY)


