mirror of
https://github.com/xcat2/xNBA.git
synced 2024-11-22 09:31:51 +00:00
11 lines
379 B
Makefile
11 lines
379 B
Makefile
# Comment out the second command and uncomment the first command
|
|
# below if you don't want to use libwrap (hosts.{allow,deny} access control)
|
|
|
|
# If you don't have it in /var/log/subsys, uncomment and define
|
|
#CFLAGS+=-DLOCKFILE_DIR=\"/var/log\"
|
|
LIBWRAP=-lwrap
|
|
|
|
p910nd: p910nd.c
|
|
# $(CC) -Wall $(CFLAGS) -o $@ p910nd.c
|
|
$(CC) -Wall $(CFLAGS) -DUSE_LIBWRAP -o $@ p910nd.c $(LIBWRAP)
|