aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-09-09 19:41:15 +0200
committerLoïc Hoguin <[email protected]>2015-09-09 19:41:15 +0200
commit5c5c92862e673025172d73133976d896e6f9a332 (patch)
treea4dca9990b055b88d27a4d36111ed61fbc510a2f /core
parente019242f5a3a9a9809184fd41b35f70d7bcd7edf (diff)
parent4191bf78c25cd947facc199d18321b3fcac736d7 (diff)
downloaderlang.mk-5c5c92862e673025172d73133976d896e6f9a332.tar.gz
erlang.mk-5c5c92862e673025172d73133976d896e6f9a332.tar.bz2
erlang.mk-5c5c92862e673025172d73133976d896e6f9a332.zip
Merge branch 'fix-no-erlang-app-support' of https://github.com/rabbitmq/erlang.mk
Diffstat (limited to 'core')
-rw-r--r--core/erlc.mk7
1 files changed, 4 insertions, 3 deletions
diff --git a/core/erlc.mk b/core/erlc.mk
index c69060c..ad67856 100644
--- a/core/erlc.mk
+++ b/core/erlc.mk
@@ -40,6 +40,8 @@ asn1_verbose = $(asn1_verbose_$(V))
mib_verbose_0 = @echo " MIB " $(filter %.bin %.mib,$(?F));
mib_verbose = $(mib_verbose_$(V))
+ifneq ($(wildcard src/),)
+
# Targets.
ifeq ($(wildcard ebin/test),)
@@ -79,7 +81,6 @@ app-build: ebin/$(PROJECT).app ; @echo -n
# Source files.
-ifneq ($(wildcard src/),)
ERL_FILES = $(sort $(call core_find,src/,*.erl))
CORE_FILES = $(sort $(call core_find,src/,*.core))
@@ -211,8 +212,6 @@ else
> ebin/$(PROJECT).app
endif
-endif
-
clean:: clean-app
clean-app:
@@ -221,3 +220,5 @@ clean-app:
$(addprefix include/,$(patsubst %.asn1,%.hrl,$(notdir $(ASN1_FILES)))) \
$(addprefix include/,$(patsubst %.asn1,%.asn1db,$(notdir $(ASN1_FILES)))) \
$(addprefix src/,$(patsubst %.asn1,%.erl,$(notdir $(ASN1_FILES))))
+
+endif