1## Process this file with automake to produce Makefile.in 2noinst_LTLIBRARIES = libgenerator.la 3 4AM_CPPFLAGS = -I$(top_srcdir)/utility -I$(top_srcdir)/common -I$(top_srcdir)/server -I$(top_srcdir)/server/generator 5 6libgenerator_la_SOURCES = \ 7 mapgen.c \ 8 mapgen.h \ 9 mapgen_topology.c \ 10 mapgen_topology.h \ 11 utilities.c \ 12 utilities.h \ 13 height_map.c \ 14 height_map.h \ 15 startpos.c \ 16 startpos.h \ 17 temperature_map.c \ 18 temperature_map.h 19 20libgenerator_la_LIBADD = -lm 21 22