mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-12 16:14:23 +00:00
19 lines
377 B
Text
19 lines
377 B
Text
|
AUTOMAKE_OPTIONS= foreign
|
||
|
|
||
|
AM_CFLAGS= @PREFER_NON_PIC@
|
||
|
INCLUDES= -I$(top_srcdir)/include
|
||
|
|
||
|
noinst_LTLIBRARIES= libnm.la
|
||
|
|
||
|
if SYSTYPE_WIN32
|
||
|
net_sources= net_win.c net_wins.c
|
||
|
else
|
||
|
net_sources= net_bsd.c net_udp.c
|
||
|
endif
|
||
|
libnm_la_SOURCES= net_dgrm.c net_loop.c net_vcr.c $(net_sources)
|
||
|
libnm_la_LDFLAGS= -static
|
||
|
|
||
|
|
||
|
EXTRA_libnm_la_SOURCES= \
|
||
|
net_bsd.c net_win.c net_wins.c net_udp.c
|