quakeforge/libs/net/Makefile.am
Bill Currie 9fbff2f4d5 Do an audit of the Makefile.am files.
o All instances of LIBADD/LDADD have a corresponding DEPENDENCIES
    specificatiion.
  o libraries now use a lib_ldflags macro to keep things consistent
  o duplication of source/lib names has been minimized (particularly in
    the libraries; more work needs to be done for the executables)
  o automake spec blocks have been organized (again, more work needs to be
    done for the executables)
2012-02-07 16:04:19 +09:00

19 lines
485 B
Makefile

AUTOMAKE_OPTIONS= foreign
SUBDIRS= nc nm
AM_CFLAGS= @PREFER_NON_PIC@
INCLUDES= -I$(top_srcdir)/include
noinst_LTLIBRARIES= libnet_chan.la libnet_main.la
nc_libs=nc/libnc.la
libnet_chan_la_LDFLAGS= @STATIC@
libnet_chan_la_LIBADD= $(nc_libs)
libnet_chan_la_DEPENDENCIES=$(nc_libs)
libnet_chan_la_SOURCES= net_chan.c
nm_libs=nm/libnm.la
libnet_main_la_LDFLAGS= @STATIC@
libnet_main_la_LIBADD= $(nm_libs)
libnet_main_la_DEPENDENCIES=$(nm_libs)
libnet_main_la_SOURCES= net_main.c