head	1.4;
access;
symbols
	RELEASE_7_1_0:1.3
	RELEASE_6_4_0:1.3
	RELEASE_5_EOL:1.3
	RELEASE_7_0_0:1.3
	RELEASE_6_3_0:1.3
	PRE_XORG_7:1.3
	RELEASE_4_EOL:1.3
	RELEASE_6_2_0:1.3
	RELEASE_6_1_0:1.3
	RELEASE_5_5_0:1.3
	RELEASE_6_0_0:1.3
	RELEASE_5_4_0:1.3
	RELEASE_4_11_0:1.3
	RELEASE_5_3_0:1.3
	RELEASE_4_10_0:1.3
	RELEASE_5_2_1:1.3
	RELEASE_5_2_0:1.3
	RELEASE_4_9_0:1.3
	RELEASE_5_1_0:1.2
	RELEASE_4_8_0:1.2
	RELEASE_5_0_0:1.2
	RELEASE_4_7_0:1.2
	RELEASE_4_6_2:1.2
	RELEASE_4_6_1:1.2
	RELEASE_4_6_0:1.2
	RELEASE_5_0_DP1:1.2
	RELEASE_4_5_0:1.2
	RELEASE_4_4_0:1.2
	RELEASE_4_3_0:1.2
	RELEASE_4_2_0:1.1.1.1
	RELEASE_4_1_1:1.1.1.1
	RELEASE_4_1_0:1.1.1.1
	RELEASE_3_5_0:1.1.1.1
	RELEASE_4_0_0:1.1.1.1
	RELEASE_3_4_0:1.1.1.1
	v2_22:1.1.1.1
	WGHICKS:1.1.1;
locks; strict;
comment	@# @;


1.4
date	2009.03.23.20.53.38;	author miwi;	state dead;
branches;
next	1.3;

1.3
date	2003.06.05.20.35.12;	author obraun;	state Exp;
branches;
next	1.2;

1.2
date	2001.03.31.11.09.02;	author obrien;	state Exp;
branches;
next	1.1;

1.1
date	99.11.01.03.46.48;	author steve;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	99.11.01.03.46.48;	author steve;	state Exp;
branches;
next	;


desc
@@


1.4
log
@2009-03-22 emulators/dlx: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
2009-03-22 java/javel: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
2009-03-22 java/guavac: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
2009-03-22 graphics/xrml: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
2009-03-22 graphics/renderpark: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
2009-03-22 games/jumpnbump: tcl8.0 support is going to be dropped
2009-03-17 irc/blackened: Broken and abandonware
2009-03-22 devel/libg++: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
2009-03-22 devel/freescope: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
2009-03-22 misc/menushki: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
2009-03-22 misc/vbidecode: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
2009-03-22 lang/wamcc: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
2009-03-22 multimedia/mpegedit: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
2009-03-22 mail/dkimap4: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
2009-03-22 net-mgmt/oproute: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
2009-03-22 x11/tkgoodstuff: tcl8.0 support is going to be dropped
2009-02-11 x11-toolkits/inti: not maintain by upstream for more than five years and no port depend on this
@
text
@--- src/Makefile.orig	Wed Jan 29 12:37:54 1997
+++ src/Makefile	Wed Jun  4 11:02:44 2003
@@@@ -10,13 +10,13 @@@@
 COMPILER  = wamcc
 INCPATH   = `pwd`
 LIBPATH   = `pwd`
-CC        = gcc
+CC        ?= gcc
 WCC       = w_$(CC)
 
 
 # other local variables
 
-CFLAGS    = -O2
+#CFLAGS    = -O2
 CFLAGINLIN= -finline-functions
 LFLAGS    =
 BMF       = bmf_$(COMPILER)
@@@@ -49,22 +49,22 @@@@
 
 
 machine.o: machine.h archi.h wam_engine.h machine.c
-	$(WCC) $(CFLAGS) -c machine.c
+	./$(WCC) $(CFLAGS) -c machine.c
 
 wam_engine.o: machine.h archi.h wam_engine.h atom_pred.h wam_engine.c 
-	$(WCC) $(CFLAGS) -c wam_engine.c
+	./$(WCC) $(CFLAGS) -c wam_engine.c
 
 wam_engine_pp.o: machine.h archi.h wam_engine.h atom_pred.h wam_engine.c
-	$(WCC) $(CFLAGS) -DWAM_PROFILE -c -o wam_engine_pp.o wam_engine.c
+	./$(WCC) $(CFLAGS) -DWAM_PROFILE -c -o wam_engine_pp.o wam_engine.c
 
 atom_pred.o: machine.h archi.h wam_engine.h atom_pred.h atom_pred.c
-	$(WCC) $(CFLAGS) -c atom_pred.c
+	./$(WCC) $(CFLAGS) -c atom_pred.c
 
 debugger.o: machine.h archi.h wam_engine.h atom_pred.h debugger.c
-	$(WCC) $(CFLAGS) -c debugger.c
+	./$(WCC) $(CFLAGS) -c debugger.c
 
 hash.o: machine.h hash.c
-	$(WCC) $(CFLAGS) -c hash.c
+	./$(WCC) $(CFLAGS) -c hash.c
 
 
 
@@@@ -79,7 +79,7 @@@@
 
 
 $(WCC): configure archi.def
-	configure
+	./configure
 	chmod a+x $(WCC)
 
 $(BMF): bmf.c
@@@@ -95,8 +95,8 @@@@
 	$(CC) $(CFLAGS) $(LFLAGS) -o pl2hex pl2hex.c
 
 $(COMPILER):
-	$(WCC) $(CFLAGS) -c wamcc*.c
-	$(WCC) $(CFLAGS) $(LFLAGS) -s -o $(COMPILER) wamcc*.o -l$(COMPILER)
+	./$(WCC) $(CFLAGS) -c wamcc*.c
+	./$(WCC) $(CFLAGS) $(LFLAGS) -s -o $(COMPILER) wamcc*.o -l$(COMPILER)
 
 
 
@


1.3
log
@* Upgrade to 2.23.
* Remove BROKEN.

PR:		ports/52922
Submitted by:	Volker Stolz <stolz@@i2.informatik.rwth-aachen.de>
@
text
@@


1.2
log
@Don't force -O2.
@
text
@d1 13
a13 3
--- src/Makefile.orig	Wed Jan 29 03:37:54 1997
+++ src/Makefile	Sat Mar 31 03:01:06 2001
@@@@ -19 +19 @@@@
d16 7
a22 1
@@@@ -52 +52 @@@@
d25 2
a26 1
@@@@ -55 +55 @@@@
d29 2
a30 1
@@@@ -58 +58 @@@@
d33 2
a34 1
@@@@ -61 +61 @@@@
d37 2
a38 1
@@@@ -64 +64 @@@@
d41 2
a42 1
@@@@ -67 +67 @@@@
d45 7
a51 1
@@@@ -82 +82 @@@@
d54 7
a60 1
@@@@ -98,2 +98,2 @@@@
d65 3
@


1.1
log
@Initial revision
@
text
@d1 6
a6 6
--- src/Makefile.orig	Wed Jan 29 11:37:54 1997
+++ src/Makefile	Tue Sep 14 04:16:11 1999
@@@@ -49,22 +49,22 @@@@
 
 
 machine.o: machine.h archi.h wam_engine.h machine.c
d9 1
a9 2
 
 wam_engine.o: machine.h archi.h wam_engine.h atom_pred.h wam_engine.c 
d12 1
a12 2
 
 wam_engine_pp.o: machine.h archi.h wam_engine.h atom_pred.h wam_engine.c
d15 1
a15 2
 
 atom_pred.o: machine.h archi.h wam_engine.h atom_pred.h atom_pred.c
d18 1
a18 2
 
 debugger.o: machine.h archi.h wam_engine.h atom_pred.h debugger.c
d21 1
a21 2
 
 hash.o: machine.h hash.c
d24 1
a24 7
 
 
 
@@@@ -79,7 +79,7 @@@@
 
 
 $(WCC): configure archi.def
d27 1
a27 7
 	chmod a+x $(WCC)
 
 $(BMF): bmf.c
@@@@ -95,8 +95,8 @@@@
 	$(CC) $(CFLAGS) $(LFLAGS) -o pl2hex pl2hex.c
 
 $(COMPILER):
a31 3
 
 
 
@


1.1.1.1
log
@Initial import of wamcc version 2.22.
A Prolog-to-C translator from Inria.

PR:		13745
Submitted by:	W. Gerald Hicks <wghicks@@bellsouth.net>
@
text
@@
