initial version of mastermind
This commit is contained in:
parent
2abab21960
commit
c829969431
3 changed files with 329 additions and 0 deletions
25
eo/app/mastermind/Makefile.am
Normal file
25
eo/app/mastermind/Makefile.am
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
###############################################################################
|
||||
#
|
||||
# Makefile.am for app/mastermind
|
||||
#
|
||||
###############################################################################
|
||||
|
||||
DEPS = $(top_builddir)/src/libeo.a $(top_builddir)/src/utils/libeoutils.a
|
||||
|
||||
###############################################################################
|
||||
|
||||
INCLUDES = -I$(top_builddir)/src
|
||||
LDADDS = $(top_builddir)/src/libeo.a $(top_builddir)/src/utils/libeoutils.a
|
||||
|
||||
###############################################################################
|
||||
|
||||
bin_PROGRAMS = mastermind
|
||||
|
||||
###############################################################################
|
||||
|
||||
mastermind_SOURCES = mastermind.cc
|
||||
mastermind_DEPENDENCIES = $(DEPS)
|
||||
mastermind_LDFLAGS = -lm
|
||||
mastermind_LDADD = $(LDADDS)
|
||||
|
||||
###############################################################################
|
||||
Reference in a new issue