mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
9fbff2f4d5
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)
19 lines
485 B
Makefile
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
|