From 3449314a28b0c6d6940bc2910eee752f81da9424 Mon Sep 17 00:00:00 2001 From: maartenkeijzer Date: Tue, 13 Mar 2001 08:25:05 +0000 Subject: [PATCH] Swapped linking order of utility libs --- eo/tutorial/Lesson2/Makefile | 4 ++-- eo/tutorial/Lesson3/Makefile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/eo/tutorial/Lesson2/Makefile b/eo/tutorial/Lesson2/Makefile index 57c02328..52e89ff7 100644 --- a/eo/tutorial/Lesson2/Makefile +++ b/eo/tutorial/Lesson2/Makefile @@ -1,4 +1,4 @@ -.cpp: ; c++ -DPACKAGE=\"eo\" -DVERSION=\"0.9.1\" -I. -I../../src -Wall -g -o $@ $*.cpp ../../src/libeo.a ../../src/utils/libeoutils.a +.cpp: ; c++ -DPACKAGE=\"eo\" -DVERSION=\"0.9.1\" -I. -I../../src -Wall -g -o $@ $*.cpp ../../src/utils/libeoutils.a ../../src/libeo.a .cpp.o: ; c++ -DPACKAGE=\"eo\" -DVERSION=\"0.9.1\" -I. -I../../src -Wall -g -c $*.cpp @@ -15,4 +15,4 @@ clean : FirstRealEA : real_value.h -FirstBitEA : binary_value.h \ No newline at end of file +FirstBitEA : binary_value.h diff --git a/eo/tutorial/Lesson3/Makefile b/eo/tutorial/Lesson3/Makefile index 16201978..bee91777 100644 --- a/eo/tutorial/Lesson3/Makefile +++ b/eo/tutorial/Lesson3/Makefile @@ -1,4 +1,4 @@ -.cpp: ; c++ -DPACKAGE=\"eo\" -DVERSION=\"0.9.1\" -I. -I../../src -Wall -g -o $@ $*.cpp ../../src/libeo.a ../../src/utils/libeoutils.a +.cpp: ; c++ -DPACKAGE=\"eo\" -DVERSION=\"0.9.1\" -I. -I../../src -Wall -g -o $@ $*.cpp ../../src/utils/libeoutils.a ../../src/libeo.a .cpp.o: ; c++ -DPACKAGE=\"eo\" -DVERSION=\"0.9.1\" -I. -I../../src -Wall -g -c $*.cpp