Subversion Repositories PlanixRsrch.SVN

Rev

Blame | Last modification | View Log | RSS feed



OBJS=main.o \
     deepqube.o \
     qube.o \
     unit.o
 


dq: $(OBJS)
        $(CXX) -o dq $(OBJS)

.cpp.o:
        $(CXX) -c $<

clean:
        rm -f *.o
        rm -f dq