public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-lang/mmix/files: mmix-20110420-makefile.patch
@ 2011-05-10 10:20 Michael Weber (xmw)
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Weber (xmw) @ 2011-05-10 10:20 UTC (permalink / raw
  To: gentoo-commits

xmw         11/05/10 10:20:54

  Added:                mmix-20110420-makefile.patch
  Log:
  Version bump
  
  (Portage version: 2.1.9.42/cvs/Linux x86_64)

Revision  Changes    Path
1.1                  dev-lang/mmix/files/mmix-20110420-makefile.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mmix/files/mmix-20110420-makefile.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mmix/files/mmix-20110420-makefile.patch?rev=1.1&content-type=text/plain

Index: mmix-20110420-makefile.patch
===================================================================
--- /var/tmp/portage/dev-lang/mmix-20110420/work/Makefile	2011-03-30 01:47:08.000000000 +0200
+++ /tmp/Makefile	2011-05-10 12:16:32.752503223 +0200
@@ -27,23 +27,23 @@
 	if test -r $*.ch; then cweave $*.w $*.ch; else cweave $*.w; fi
 
 .w.o:
-	make $*.c
-	make $*.o
+	$(MAKE) $*.c
+	$(MAKE) $*.o
 
 .w:
-	make $*.c
-	make $*
+	$(MAKE) $*.c
+	$(MAKE) $*
 
 .w.dvi:
-	make $*.tex
-	make $*.dvi
+	$(MAKE) $*.tex
+	$(MAKE) $*.dvi
 
 .w.ps:
-	make $*.dvi
-	make $*.ps
+	$(MAKE) $*.dvi
+	$(MAKE) $*.ps
 
 .w.pdf:
-	make $*.tex
+	$(MAKE) $*.tex
 	case "$(PDFTEX)" in \
 	 dvipdfm ) tex "\let\pdf+ \input $*"; dvipdfm $* ;; \
 	 pdftex ) pdftex $* ;; \
@@ -73,27 +73,26 @@
 clean:
 	rm -f *~ *.o *.c *.h *.tex *.log *.dvi *.toc *.idx *.scn *.ps core
 
-mmix-pipe.o: mmix-pipe.c abstime
+abstime.h: abstime
 	./abstime > abstime.h
+
+mmix-pipe.o: mmix-pipe.c abstime abstime.h
 	$(CC) $(CFLAGS) -c mmix-pipe.c
-	rm abstime.h
 
 mmix-config.o: mmix-pipe.o
 
 mmmix:  mmix-arith.o mmix-pipe.o mmix-config.o mmix-mem.o mmix-io.o mmmix.c
-	$(CC) $(CFLAGS) mmmix.c \
+	$(CC) $(CFLAGS) $(LDFLAGS) mmmix.c \
 	  mmix-arith.o mmix-pipe.o mmix-config.o mmix-mem.o mmix-io.o -o mmmix
 
 mmixal: mmix-arith.o mmixal.c
-	$(CC) $(CFLAGS) mmixal.c mmix-arith.o -o mmixal
+	$(CC) $(CFLAGS) $(LDFLAGS) mmixal.c mmix-arith.o -o mmixal
 
-mmix:   mmix-arith.o mmix-io.o mmix-sim.c abstime
-	./abstime > abstime.h
-	$(CC) $(CFLAGS) mmix-sim.c mmix-arith.o mmix-io.o -o mmix
-	rm abstime.h
+mmix:   mmix-arith.o mmix-io.o mmix-sim.c abstime abstime.h
+	$(CC) $(CFLAGS) $(LDFLAGS) mmix-sim.c mmix-arith.o mmix-io.o -o mmix
 
 mmotype: mmotype.c
-	$(CC) $(CFLAGS) mmotype.c -o mmotype
+	$(CC) $(CFLAGS) $(LDFLAGS) mmotype.c -o mmotype
 
 tarfile: $(ALL)
 	tar cvf /tmp/mmix.tar $(ALL)






^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-lang/mmix/files: mmix-20110420-makefile.patch
@ 2011-07-27  0:16 Michael Weber (xmw)
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Weber (xmw) @ 2011-07-27  0:16 UTC (permalink / raw
  To: gentoo-commits

xmw         11/07/27 00:16:08

  Modified:             mmix-20110420-makefile.patch
  Log:
  Version bump
  
  (Portage version: 2.1.10.3/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  dev-lang/mmix/files/mmix-20110420-makefile.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mmix/files/mmix-20110420-makefile.patch?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mmix/files/mmix-20110420-makefile.patch?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mmix/files/mmix-20110420-makefile.patch?r1=1.1&r2=1.2

Index: mmix-20110420-makefile.patch
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/mmix/files/mmix-20110420-makefile.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mmix-20110420-makefile.patch	10 May 2011 10:20:54 -0000	1.1
+++ mmix-20110420-makefile.patch	27 Jul 2011 00:16:08 -0000	1.2
@@ -1,5 +1,5 @@
---- /var/tmp/portage/dev-lang/mmix-20110420/work/Makefile	2011-03-30 01:47:08.000000000 +0200
-+++ /tmp/Makefile	2011-05-10 12:16:32.752503223 +0200
+--- Makefile
++++ Makefile
 @@ -27,23 +27,23 @@
  	if test -r $*.ch; then cweave $*.w $*.ch; else cweave $*.w; fi
  






^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-07-27  0:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-10 10:20 [gentoo-commits] gentoo-x86 commit in dev-lang/mmix/files: mmix-20110420-makefile.patch Michael Weber (xmw)
  -- strict thread matches above, loose matches on Subject: below --
2011-07-27  0:16 Michael Weber (xmw)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox