mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 08:27:39 +00:00
18 lines
336 B
Text
18 lines
336 B
Text
|
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)
|