summaryrefslogtreecommitdiff
path: root/devel/cocktail/files/patch-rpp-m2c-Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'devel/cocktail/files/patch-rpp-m2c-Makefile')
-rw-r--r--devel/cocktail/files/patch-rpp-m2c-Makefile55
1 files changed, 0 insertions, 55 deletions
diff --git a/devel/cocktail/files/patch-rpp-m2c-Makefile b/devel/cocktail/files/patch-rpp-m2c-Makefile
deleted file mode 100644
index 5b9c29a4acd7..000000000000
--- a/devel/cocktail/files/patch-rpp-m2c-Makefile
+++ /dev/null
@@ -1,55 +0,0 @@
---- /usr/ports/devel/cocktail/work/cocktail-9309//./rpp/m2c/Makefile Tue Feb 15 14:28:12 1994
-+++ ./rpp/m2c/Makefile Thu Aug 5 18:48:26 2004
-@@ -1,24 +1,19 @@
--BIN = $(HOME)/bin
--BIN = $(HOME)/bin
--OPT = -O
--CC = cc
-
-- # C library (reuse)
--REUSE = ../../reuse/m2c
-+.include "../../Makefile.inc"
-
-- # C libraries
--CLIBS = $(REUSE)/libreuse.a
--
-- # options for C compiler
--CFLAGS = -w -I$(REUSE) $(OPT)
--
--M2FLAGS = -c
-+ROOTDIR = ../..
-+CFLAGS += -I$(INCDIR)
-+CLIBS += $(REUSELIB)
-
- all: rpp
-
- install: rpp
-- install -c -s -m 755 rpp $(BIN)
-+ install -c -s -m 755 rpp $(DESTBIN)
-
-+clean:
-+ -rm -f $(STDCLEAN)
-+ -rm -f *.o
-+ -rm -f rpp
-
- # HEAD
-
-@@ -42,18 +37,3 @@
- Scanner.o \
- $(CLIBS)
-
--# TAIL
--
--clean :
-- rm -f core *.o
--
--.SUFFIXES: .md .mi .h .c .o
--
--.mi.c:
-- mtc2 $(M2FLAGS) $*.mi;
--
--.md.h:
-- mtc2 $(M2FLAGS) $*.md;
--
--.c.o:
-- $(CC) $(CFLAGS) -c $*.c