quakeforge/libs/net/nm/Makefile.am
Bill Currie f5501fbf24 Fix a pile of automake deprecation warnings.
s/INCLUDES/AM_CPPFLAGS/g

I <3 sed :)
2013-11-24 13:11:50 +09:00

18 lines
381 B
Makefile

AUTOMAKE_OPTIONS= foreign
AM_CFLAGS= @PREFER_NON_PIC@
AM_CPPFLAGS= -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