We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f93724 commit 3eb2d65Copy full SHA for 3eb2d65
Makefile
@@ -28,18 +28,15 @@ build :
28
(add-to-list 'custom-theme-load-path \"./\") \
29
(load-theme 'solarized t))"
30
31
-init :
32
- mkdir -p $(TEST_DIR)
33
-
34
-test-dep-1 : init
+test-dep-1 :
35
@cd $(TEST_DIR) && \
36
$(EMACS) $(EMACS_BATCH) -L . -L .. -l $(TEST_DEP_1) || \
37
(echo "Can't load test dependency $(TEST_DEP_1).el, run 'make downloads' to fetch it" ; exit 1)
38
39
-downloads : init
+downloads :
40
$(CURL) '$(TEST_DEP_1_STABLE_URL)' > $(TEST_DIR)/$(TEST_DEP_1).el
41
42
-downloads-latest : init
+downloads-latest :
43
$(CURL) '$(TEST_DEP_1_LATEST_URL)' > $(TEST_DIR)/$(TEST_DEP_1).el
44
45
autoloads :
ert-tests/dummy-test.el
0 commit comments