summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1997-12-03 14:17:38 +0000
committerAndrew Tridgell <tridge@samba.org>1997-12-03 14:17:38 +0000
commit4800a02a92d9451d3bd51e7b9e366e4e60a3789e (patch)
tree8f479c81e9ca703b70dc391795452c557b4c0213
parent97b62b347648411d034ab91845ae607eca4dfad6 (diff)
downloadsamba-4800a02a92d9451d3bd51e7b9e366e4e60a3789e.tar.gz
samba-4800a02a92d9451d3bd51e7b9e366e4e60a3789e.tar.xz
samba-4800a02a92d9451d3bd51e7b9e366e4e60a3789e.zip
Makefile.lib does nothing, so remove it
-rw-r--r--source/Makefile.lib32
1 files changed, 0 insertions, 32 deletions
diff --git a/source/Makefile.lib b/source/Makefile.lib
deleted file mode 100644
index 22102d7dfb9..00000000000
--- a/source/Makefile.lib
+++ /dev/null
@@ -1,32 +0,0 @@
-###########################################################################
-# Library Makefile for Samba SMB client/server for unix
-# Copyright (C) Andrew Tridgell 1992-1996
-# Copyright (C) John H Terpstra 1995-1997
-# Copyright (C) Luke Kenneth Casson Leighton 1996-1997
-###########################################################################
-
-all : $(THIS_LIB)
-
-.SUFFIXES:
-.SUFFIXES: .c .o .h
-
-.c.o: $(INCLUDES)
- @echo Compiling $*.c
- @$(CC) $(CFLAGS) -c $*.c -o $*.o
-
-$(THIS_LIB): $(THIS_OBJ) $(LIB_INCS)
- @echo Linking $@
- @$(AR) $@ $(THIS_OBJ)
- @$(RANLIB) $@
-
-clean:
- rm -f core $(THIS_OBJ) $(THIS_LIB) *~
-
-cleandir: clean
- rm -f .depend tags
-
-realclean: clean
-
-proto:
- @$(SHELL) ../checkos.sh $(FLAGSM)
- $(AWK) -f ../mkproto.awk `echo $(THIS_PROTO_OBJ) | sed -e 's/\.o/\.c/g' | tr ' ' '\n' | sort | uniq` > $(LIBNAME)_proto.h