mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
21d8b4f8dc
hw-master use libnetchan. there are evil include hacks that will need to be taken care of in net*.[ch]
17 lines
336 B
Makefile
17 lines
336 B
Makefile
AUTOMAKE_OPTIONS= foreign
|
|
|
|
AM_CFLAGS= @PREFER_NON_PIC@
|
|
INCLUDES= -I$(top_srcdir)/include
|
|
|
|
noinst_LTLIBRARIES= libnc.la
|
|
|
|
ipv6_src= net_udp6.c
|
|
ipv4_src= net_udp.c
|
|
if NETTYPE_IPV6
|
|
ipvX_src= $(ipv6_src)
|
|
else
|
|
ipvX_src= $(ipv4_src)
|
|
endif
|
|
libnc_la_SOURCES= $(ipvX_src)
|
|
libnc_la_LDFLAGS= -static
|
|
EXTRA_libnc_la_SOURCES= $(ipv4_src) $(ipv6_src)
|