Skip to content

Commit 1d7fa97

Browse files
committed
Minor make rule updates
1 parent 7216c41 commit 1d7fa97

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

export/INSTALL.export

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ The recommended installation procedure:
33
Most often you will need to specify command-line options to configure.
44
To obtain a list of configure options run 'configure --help'.
55
2) make
6-
3) make install
6+
3) optional: make check
7+
4) make install
78

89
Report all problems to [email protected]
910

export/MakeRules.export

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11

2+
all:: default
3+
24
default:: $(TOPDIR)/lib/$(TARGET)
35

46
install:: install_inc install_target install_pkgconfig
@@ -58,7 +60,7 @@ clean:: oclean targetclean
5860
cd doc; make clean
5961

6062
distclean:: clean
61-
-rm -rf MakeVars MakeRules MakeSuffixRules config.* depcheck* autom4* libtool include/libint2_config.h
63+
-rm -rf MakeVars MakeRules MakeSuffixRules config.* depcheck* autom4* libtool include/libint2_config.h libint2.pc
6264
cd tests; make distclean
6365
cd doc; make distclean
6466

export/Makefile.export

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ $(TOPDIR)/lib/$(NAMEV).la: $(LIBOBJ)
3434
$(LTLINK) $(CXX) -o $@ -objectlist libobjlist $(LTLINKLIBOPTS)
3535
-rm -f libobjlist
3636

37-
check:
37+
check: all
3838
(cd tests && make check) || exit 1
3939

4040
.PHONY: doc

0 commit comments

Comments
 (0)