summaryrefslogtreecommitdiff
path: root/src/tool/moneycount/Makefile
blob: 27cd98ec027cc1c7eb6eae57befee5ac25b4f5f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
all: moneycount

OBJECTS = main.o athena_text.o
CPP = g++

moneycount: $(OBJECTS)
	$(CPP) -o $@ $(OBJECTS) $(COMMON_OBJS) $(LIBS)
main.o: main.cpp
athena_text.o: athena_text.cpp athena_text.h


clean:
	rm -f *.o moneycount