Skip to content

Commit c8cab4e

Browse files
committed
Adds comment to make-zip on creating the zip file
Signed-off-by: Tom Marble <[email protected]>
1 parent 55cbe6e commit c8cab4e

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

starter_kits/Clojure/make-zip

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
1+
# -*- mode: makefile -*-
2+
# This is a Makefile
3+
# You can use it to create a zip to submit
4+
# make -f make-zip
15

2-
FILES := project.clj ./hlt/lib/hlt/*.clj ./hlt/app/MyBot.clj
6+
# If you add additional namespaces put those files here
7+
MYFILES := ./hlt/app/MyBot.clj
8+
9+
FILES := project.clj ./hlt/lib/hlt/*.clj $(MYFILES)
310

411
all: mybot.zip
512

0 commit comments

Comments
 (0)