Introduction
Introduction Statistics Contact Development Disclaimer Help
Makefile: order dependencies, remove unneeded [ -d ] check - bmf - bmf (Bayesia…
git clone git://git.codemadness.org/bmf
Log
Files
Refs
README
LICENSE
---
commit c8fb28f55c568c95be709803ef153199f1557035
parent 0f11e5e148314939e59850ef2aaa607f2b06bc90
Author: Hiltjo Posthuma <[email protected]>
Date: Sun, 23 Sep 2018 14:37:04 +0200
Makefile: order dependencies, remove unneeded [ -d ] check
Diffstat:
M Makefile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/Makefile b/Makefile
@@ -5,15 +5,15 @@ VERSION=0.9.4
all: bmf
-bmf: bmf.o filt.o dbdb.o dbtext.o dbh.o lex.o vec.o str.o dbg.o
+bmf: bmf.o dbg.o dbdb.o dbh.o dbtext.o filt.o lex.o str.o vec.o
$(CC) -o $@ bmf.o filt.o dbdb.o dbtext.o dbh.o lex.o vec.o str.o dbg.o…
bmf.o: bmf.c
$(CC) $(CFLAGS) -DPACKAGE=\"bmf\" -DVERSION=\"$(VERSION)\" -c $<
install: checkroot bmf bmf.1
- [ -d $(DESTDIR)$(BINDIR) ] || mkdir -p $(DESTDIR)$(BINDIR)
- [ -d $(DESTDIR)$(MANDIR)/man1 ] || mkdir -p $(DESTDIR)$(MANDIR)/man1
+ mkdir -p $(DESTDIR)$(BINDIR)
+ mkdir -p $(DESTDIR)$(MANDIR)/man1
cp bmf $(DESTDIR)$(BINDIR)
cp bmf.1 $(DESTDIR)$(MANDIR)/man1
You are viewing proxied material from codemadness.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.