# gamed - common adventure games engine # (c) 2000 # GPL CC = g++ CFLAGS = LFLAGS = all: main main: $(CC) -c main.cpp $(CC) -c elem.cpp $(CC) -o program.exe main.o elem.o clean: rm -f *.o core program.exe test: clean all ./mine