Skip to content

Commit dfb9796

Browse files
committed
an improvement in makefile
1 parent a5cf62e commit dfb9796

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

makefile

+4-3
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,19 @@
1616
# You should have received a copy of the GNU General Public License along
1717
# with this program. If not, see <http://www.gnu.org/licenses/>.
1818

19-
.PHONY : install-deps clear
19+
.PHONY : clear
2020

21-
build/shtk : src/*.lisp src/shtookovina.asd install-deps
21+
build/shtk : src/*.lisp src/shtookovina.asd build/install-deps
2222
buildapp --output build/shtk --manifest-file build/manifest.txt \
2323
--load-system shtookovina --entry shtookovina:main
2424

25-
install-deps : src/shtookovina.asd
25+
build/install-deps : src/shtookovina.asd
2626
mkdir -vp build
2727
sbcl --non-interactive --load ~/quicklisp/setup.lisp \
2828
--load src/shtookovina.asd --eval "(ql:quickload :shtookovina)" \
2929
--eval '(ql:write-asdf-manifest-file "build/manifest.txt")'
3030
echo $(abspath ./src/shtookovina.asd) >> build/manifest.txt
31+
touch build/install-deps
3132

3233
clear :
3334
rm -vr build

0 commit comments

Comments
 (0)