From f9158d441880222b1ba287947ebc863785bf557c Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Tue, 3 Jul 2001 06:45:58 +0000 Subject: Scrub up the tests a bit, and force everybody to use the build dir, so nothing need be installed... -Erik --- test/ldso/Makefile | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'test/ldso') diff --git a/test/ldso/Makefile b/test/ldso/Makefile index 3131a715a..59946ae85 100644 --- a/test/ldso/Makefile +++ b/test/ldso/Makefile @@ -4,17 +4,16 @@ include $(TESTDIR)/Rules.mak all: dltest shared run dltest: - $(TESTCC) $(TEST_CFLAGS) -c dltest.c -o dltest.o - $(TESTCC) $(TEST_CFLAGS) -c howdy.c -o howdy.o + $(CC) $(CFLAGS) -c dltest.c -o dltest.o + $(CC) $(CFLAGS) -c howdy.c -o howdy.o shared: - $(TESTCC) $(TEST_CFLAGS) -shared -o libhowdy.so -Wl,-soname,libhowdy.so howdy.o - $(TESTCC) $(TEST_CFLAGS) -o dltest dltest.o -ldl + $(CC) $(CFLAGS) -shared -o libhowdy.so -Wl,-soname,libhowdy.so howdy.o + $(CC) $(CFLAGS) -o dltest dltest.o -ldl run: @echo Running dltest ./dltest clean: - rm -f *.o *.so dltest core - + rm -f *.o *.so dltest core libhowdy.so -- cgit v1.2.3