quakeforge/libs/net/Makefile.am
Bill Currie 21d8b4f8dc link in hw, move the qw and nq networking code into libs/net and make
hw-master use libnetchan. there are evil include hacks that will need to be
taken care of in net*.[ch]
2003-02-11 22:48:57 +00:00

17 lines
449 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
libnet_chan_la_LIBADD= nc/libnc.la
libnet_chan_la_LDFLAGS= -static
libnet_chan_la_SOURCES= net_chan.c
libnet_chan_la_DEPENDENCIES= nc/libnc.la
libnet_main_la_LIBADD= nm/libnm.la
libnet_main_la_LDFLAGS= -static
libnet_main_la_SOURCES= net_main.c
libnet_main_la_DEPENDENCIES= nm/libnm.la