diff options
author | Stef Walter <stef@memberwebs.com> | 2004-08-25 00:48:14 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2004-08-25 00:48:14 +0000 |
commit | bb59442e8131ab45ab36900c05c02757eca05feb (patch) | |
tree | bf4ba74235ed3ded3704cfe4472165d2abd64315 /daemon/rfcnb/x_Makefile | |
parent | b200e99089f3e52bf8306a122cbd81054a60887a (diff) |
Removed NTLM support from the main branch.
Diffstat (limited to 'daemon/rfcnb/x_Makefile')
-rw-r--r-- | daemon/rfcnb/x_Makefile | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/daemon/rfcnb/x_Makefile b/daemon/rfcnb/x_Makefile deleted file mode 100644 index 97a01be..0000000 --- a/daemon/rfcnb/x_Makefile +++ /dev/null @@ -1,38 +0,0 @@ -# Find the LDFLAGS entry for your system type and uncomment it ... - -CC = gcc - -#CFLAGS = -g -DRFCNB_DEBUG -# Uncomment the above and recomment the below if you want debugging -CFLAGS = -g - -#CFLAGS = -g -DRFCNB_DEBUG -DRFCNB_PRINT_DATA -# Different LDFLAGS for different systems: -# ULTRIX and Digital UNIX (OSF/1) -# LDFALGS = -# -# Linux -# LDFLAGS = -# -# Solaris and maybe SunOS??? -# LDFLAGS = -lsocket -lnsl -# -# HP-UX ??? -# LDFLAGS = ??? - -INCLUDES = rfcnb.h rfcnb-priv.h rfcnb-util.h rfcnb-io.h - -.SUFFIXES: .c .o .h - -all: test_rfcnb - -.c.o: $(INCLUDES) - @echo Compiling $*.c - @$(CC) $(CFLAGS) -c $*.c - -test_rfcnb: test_rfcnb.o session.o rfcnb-util.o rfcnb-io.o - $(CC) $(CFLAGS) $(LDFLAGS) -o test_rfcnb test_rfcnb.o session.o rfcnb-util.o rfcnb-io.o - -clean: - rm *.o test_rfcnb - |