1# xxx
2
3AUTOMAKE_OPTIONS	= foreign dist-tarZ no-dependencies
4
5#Change AR Flag
6AR = $(AR1)
7libxxx_a_AR = $(AR2)
8
9P_BASE        = $(top_srcdir)/framework/base
10P_IO          = $(top_srcdir)/framework/io
11P_PARALLEL    = $(top_srcdir)/framework/parallel
12P_IMD         = $(top_srcdir)/framework/imd
13P_TOPOLOGY    = $(top_srcdir)/framework/topology
14P_FORCES      = $(top_srcdir)/framework/forces
15P_INTEGRATORS = $(top_srcdir)/framework/integrators
16P_FRONTEND    = $(top_srcdir)/framework/frontend
17P_FACTORIES   = $(top_srcdir)/framework/factories
18
19# xxx Sources
20P_XXX_SRC =\
21
22# xxx Includes
23P_XXX_H =\
24
25# Temporary library to get subdirectory source files, blech!
26noinst_LIBRARIES = libxxx.a
27
28libxxx_a_SOURCES = $(P_XXX_SRC) $(P_XXX_H)
29
30INCLUDES =-I$(P_BASE) -I$(P_IO) -I$(P_PARALLEL) -I$(P_IMD) -I$(P_TOPOLOGY) -I$(P_FORCES) -I$(P_INTEGRATORS) -I$(P_FRONTEND) -I$(P_FACTORIES)
31
32SOURCEFILES = $(P_XXX_SRC)
33
34include $(top_srcdir)/Makefile.depend
35