Merge branch 'chneukirchen-ldflags' - sam - An updated version of the sam text … | |
git clone git://vernunftzentrum.de/sam.git | |
Log | |
Files | |
Refs | |
LICENSE | |
--- | |
commit 7f350c19ce7da08c0151abf5228ebe083d6d6826 | |
parent 6102b90dfd41b8b29dc0b2d9c331b89caae232e0 | |
Author: Rob King <[email protected]> | |
Date: Mon, 23 May 2016 10:11:36 -0500 | |
Merge branch 'chneukirchen-ldflags' | |
Diffstat: | |
libXg/Makefile | 2 +- | |
sam/Makefile | 2 +- | |
samterm/Makefile | 2 +- | |
3 files changed, 3 insertions(+), 3 deletions(-) | |
--- | |
diff --git a/libXg/Makefile b/libXg/Makefile | |
@@ -41,7 +41,7 @@ OBJS= arc.o arith.o balloc.o bitblt.o bitbltclip.o bor… | |
all install: $(LIB) | |
compile: $(LIB) | |
test: $(LIB) test.o | |
- $(CC) -o $@ $? $(LIB) $(XLIBS) -lm | |
+ $(CC) -o $@ $? $(LIB) $(XLIBS) -lm $(LDFLAGS) | |
echo try running test | |
clean: | |
rm -f *.o test *.a | |
diff --git a/sam/Makefile b/sam/Makefile | |
@@ -66,7 +66,7 @@ OBJ=sam.o address.o buffer.o cmd.o disc.o error.o file.o io.o… | |
all: sam | |
sam: $(OBJ) $(LIB) | |
- $(CC) -o sam $(OBJ) $(LIB) | |
+ $(CC) -o sam $(OBJ) $(LIB) $(LDFLAGS) | |
clean: | |
rm -f *.o core sam | |
diff --git a/samterm/Makefile b/samterm/Makefile | |
@@ -38,7 +38,7 @@ OBJ=main.o flayer.o icons.o io.o menu.o mesg.o rasp.o scroll.… | |
all: samterm | |
samterm: $(OBJ) $(LIBS) | |
- $(CC) -o samterm $(OBJ) $(LIBS) $(XLIBS) | |
+ $(CC) -o samterm $(OBJ) $(LIBS) $(XLIBS) $(LDFLAGS) | |
clean: | |
rm -f *.o core samterm |