mirror of https://github.com/axmolengine/axmol.git
33 lines
1.0 KiB
Makefile
33 lines
1.0 KiB
Makefile
|
AUTOMAKE_OPTIONS = foreign subdir-objects nostdinc 1.9.6
|
||
|
PROGS = ahost adig acountry
|
||
|
|
||
|
EXTRA_DIST = CMakeLists.txt Makefile.inc
|
||
|
|
||
|
noinst_PROGRAMS =$(PROGS)
|
||
|
|
||
|
# Specify our include paths here, and do it relative to $(top_srcdir) and
|
||
|
# $(top_builddir), to ensure that these paths which belong to the library
|
||
|
# being currently built and tested are searched before the library which
|
||
|
# might possibly already be installed in the system.
|
||
|
|
||
|
AM_CPPFLAGS = -I$(top_builddir)/include \
|
||
|
-I$(top_builddir)/src/lib \
|
||
|
-I$(top_srcdir)/include \
|
||
|
-I$(top_srcdir)/src/lib
|
||
|
|
||
|
include Makefile.inc
|
||
|
|
||
|
LDADD = $(top_builddir)/src/lib/libcares.la
|
||
|
|
||
|
ahost_SOURCES = ahost.c $(SAMPLESOURCES) $(SAMPLEHEADERS)
|
||
|
ahost_CFLAGS = $(AM_CFLAGS)
|
||
|
ahost_CPPFLAGS = $(AM_CPPFLAGS)
|
||
|
|
||
|
adig_SOURCES = adig.c $(SAMPLESOURCES) $(SAMPLEHEADERS)
|
||
|
adig_CFLAGS = $(AM_CFLAGS)
|
||
|
adig_CPPFLAGS = $(AM_CPPFLAGS)
|
||
|
|
||
|
acountry_SOURCES = acountry.c $(SAMPLESOURCES) $(SAMPLEHEADERS)
|
||
|
acountry_CFLAGS = $(AM_CFLAGS)
|
||
|
acountry_CPPFLAGS = $(AM_CPPFLAGS)
|