# gamed - common adventure games engine
# (c) 2000 <lcamtuf@ags.pl>
# GPL

CC	= gcc
CFLAGS	= 
LFLAGS  = 

all:	main

main:	
	$(CC) -c main.cpp
	$(CC) -c licznik.cpp 
	$(CC) -c interf.cpp 
	$(CC) -o program.exe main.o licznik.o interf.o
	

clean:
	rm -f *.o core program.exe

test: clean all
	./mine