summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2003-10-02 05:04:38 +0000
committerJohn Wiegley <johnw@newartisans.com>2003-10-02 05:04:38 +0000
commitbfff951c310b0b1b4f2ddaf3d69549bd3bac2717 (patch)
treec53f3f0d6fe5307d7a90e2cb74c734fc99dfab90 /Makefile
parent2a1055890241b1299d8b91d65038d0f4f5067fb5 (diff)
downloadfork-ledger-bfff951c310b0b1b4f2ddaf3d69549bd3bac2717.tar.gz
fork-ledger-bfff951c310b0b1b4f2ddaf3d69549bd3bac2717.tar.bz2
fork-ledger-bfff951c310b0b1b4f2ddaf3d69549bd3bac2717.zip
*** empty log message ***
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0ececcd5..2b1b7703 100644
--- a/Makefile
+++ b/Makefile
@@ -31,11 +31,14 @@ INCS := $(INCS) -I/usr/include/xmltok
LIBS := $(LIBS) -lxmlparse
endif
-all: make.deps ledger
+all: make.deps ledger ledger.info
ledger: $(OBJS)
g++ $(CFLAGS) $(INCS) $(DFLAGS) -o $@ $(OBJS) $(LIBS)
+ledger.info: ledger.texi
+ makeinfo $<
+
%.o: %.cc
g++ $(CFLAGS) $(INCS) $(DFLAGS) -c -o $@ $<