1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
bin_PROGRAMS = late
late_SOURCES = \
init.cpp \
graphics.cpp graphics.h \
game.cpp game.h \
square.cpp square.h \
ball.cpp ball.h \
slicer.cpp slicer.h \
player.cpp player.h \
boringball.cpp boringball.h \
arch.cpp arch.h \
text.cpp text.h \
sidebar.cpp sidebar.h \
scorescreen.cpp scorescreen.h \
explosiveball.cpp explosiveball.h \
menu.cpp menu.h \
killerball.cpp killerball.h \
splitball.cpp splitball.h \
chronoball.cpp chronoball.h \
goody.cpp goody.h \
magnet.cpp magnet.h \
highscores.cpp highscores.h \
point.h
AM_CPPFLAGS = @CPPFLAGS@ -Wall -DDATADIR=\"$(pkgdatadir)\" -DLOCALSTATEDIR=\"$(localstatedir)\"
|