diff options
Diffstat (limited to 'include/makeinclude/rules.bin.GNU')
-rw-r--r-- | include/makeinclude/rules.bin.GNU | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/include/makeinclude/rules.bin.GNU b/include/makeinclude/rules.bin.GNU deleted file mode 100644 index c91dad7a3e6..00000000000 --- a/include/makeinclude/rules.bin.GNU +++ /dev/null @@ -1,18 +0,0 @@ -#---------------------------------------------------------------------------- -# $Id$ -# -# Build binaries -# GNU version -# Requires GNU make -#---------------------------------------------------------------------------- - -VBIN = $(BIN:%=%$(VAR)) - -ifndef OBJEXT -OBJEXT=o -endif - -VOBJS = $(subst .cpp,.$(OBJEXT),$(foreach file,$(SRC),$(VDIR)$(notdir $(file)))) - -$(BIN): %: $(VDIR)%.o $(VOBJS) - $(LINK.cc) -o $@ $^ $(LDFLAGS) $(VLDLIBS) $(POSTLINK) |