summaryrefslogtreecommitdiff
path: root/devel/cocktail/files/patch-reuse-c-Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'devel/cocktail/files/patch-reuse-c-Makefile')
-rw-r--r--devel/cocktail/files/patch-reuse-c-Makefile64
1 files changed, 0 insertions, 64 deletions
diff --git a/devel/cocktail/files/patch-reuse-c-Makefile b/devel/cocktail/files/patch-reuse-c-Makefile
deleted file mode 100644
index 5942e17c1ca7..000000000000
--- a/devel/cocktail/files/patch-reuse-c-Makefile
+++ /dev/null
@@ -1,64 +0,0 @@
---- /usr/ports/devel/cocktail/work/cocktail-9309//./reuse/c/Makefile Tue Feb 15 14:26:37 1994
-+++ ./reuse/c/Makefile Thu Aug 5 18:49:32 2004
-@@ -1,35 +1,31 @@
--LIB = $(HOME)/lib
--INCDIR = $(LIB)/include
--TARGET = SUN
--REUSE = libreuse.a
--OPT = -O
--UNIX = UNIX
--CFLAGS = $(OPT) -D$(UNIX) -D$(TARGET)
--CC = cc
--OBJS = rSystem.o General.o rMemory.o DynArray.o StringMem.o Idents.o Sets.o Time.o \
-- Errors.o Positions.o Source.o
-
--# targets
-+.include "../../Makefile.inc"
-
--all: $(TARGET)
-+OBJS = rSystem.o General.o rMemory.o DynArray.o StringMem.o Idents.o \
-+ Sets.o Time.o Errors.o Positions.o Source.o
-
--PCS10 PCS20: $(REUSE)
-+# targets
-
--SUN: $(REUSE)
-- ranlib $(REUSE)
-+all: $(REUSE)
-
- $(REUSE): $(OBJS)
- ar ruc $(REUSE) $(OBJS)
- -ranlib $(REUSE)
-
--install: $(TARGET)
-- install -c -m 664 $(REUSE) $(LIB)
-- -ranlib $(LIB)/$(REUSE)
-- cp *.h $(INCDIR)
-- chmod u+w,a+r $(INCDIR)/*.h
-+install: $(REUSE)
-+ install -c -m 664 $(REUSE) $(DESTLIB)
-+ -ranlib $(DESTLIB)/$(REUSE)
-+ cp *.h $(DESTINCDIR)
-+ chmod u+w,a+r $(DESTINCDIR)/*.h
-+
-+clean: cleantest
-+ -rm -f $(STDCLEAN)
-+ -rm -f *.o *Drv
-+ -rm -f $(REUSE)
-+
-+cleantest:
-+ -rm -f rMemoryDrv DynArrDrv SetsDrv IdentsDrv StrMemDrv ErrorsDrv
-
--clean:
-- rm -f *.o *Drv core
-
- # test programs
-
-@@ -73,7 +69,3 @@
- ErrorsDrv.o: Errors.h Positions.h Sets.h Idents.h
- Source.o: Source.h rSystem.h
-
--.SUFFIXES: .c .o
--
--.c.o:
-- $(CC) $(CFLAGS) -c $*.c