diff options
author | Roy Marples <roy@marples.name> | 2008-01-04 11:06:58 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-01-04 11:06:58 +0000 |
commit | d7961bef66619849e14fe8be38f1880d0473a2a7 (patch) | |
tree | e67114e7eda4907ff1380e5e0fe1440457765a27 /src/Makefile | |
parent | d8019881dd588cef273f506411ec23a888c646e5 (diff) |
Add BIN_LDFLAGS so that we can build static bins without affecting our shared libraries.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile index 01ecf9ba..c24e75ee 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,4 +1,4 @@ -# Copyright 2007 Roy Marples +# Copyright 2007-2008 Roy Marples # We should strive to keep this Makefile working with the default make # shipped with the OS's we support. Mainly because I'm lazy and just want @@ -129,7 +129,8 @@ $(LIBRCSO): rc.map $(LIBRCOBJS) $(RCOBJS): $(CC) $(CPPFLAGS) $(CPPFLAGS_SSD) $(CFLAGS) -c $< rc: version.h $(LIBEINFOSO) $(LIBRCSO) $(RCOBJS) - $(CC) $(LDFLAGS) -o rc $(RCOBJS) $(LDLIBS) $(LDLIBS_RC) $(LDLIBS_LIBEINFO) $(LDLIBS_LIBRC) + $(CC) $(LDFLAGS) $(BIN_LDFLAGS) -o rc \ + $(RCOBJS) $(LDLIBS) $(LDLIBS_RC) $(LDLIBS_LIBEINFO) $(LDLIBS_LIBRC) $(ALL_LINKS): rc ln -sf rc $@ |