@@ -19,7 +19,6 @@ MD2D_SRC_FILES := $(shell find src/lab/models/md2d -type f ! -name '.*' -print)
19
19
20
20
GRAPHER_SRC_FILES := $(shell find src/lab/grapher -type f ! -name '.* ' -print)
21
21
IMPORT_EXPORT_SRC_FILES := $(shell find src/lab/import-export -type f ! -name '.* ' -print)
22
- IFRAME_PHONE_SRC_FILES := $(shell find src/lab/iframe-phone -type f ! -name '.* ' -print)
23
22
24
23
COMMON_SRC_FILES := $(shell find src/lab/common -type f ! -name '.* ' -print)
25
24
@@ -56,8 +55,7 @@ DEV_MARKDOWN_FILES := $(patsubst %.md, public/%.html, $(wildcard developer-doc/*
56
55
LAB_JS_FILES = \
57
56
public/lab/lab.js \
58
57
public/lab/lab.grapher.js \
59
- public/lab/lab.import-export.js \
60
- public/lab/lab.iframe-phone.js
58
+ public/lab/lab.import-export.js
61
59
62
60
# default target executed when running make. Run the $(MAKE) public task rather than simply
63
61
# declaring a dependency on 'public' because 'bundle install' and 'npm install' might update some
@@ -425,9 +423,6 @@ public/lab/lab.import-export.js: \
425
423
$(COMMON_SRC_FILES )
426
424
$(R_OPTIMIZER ) -o src/lab/import-export/import-export.build.js
427
425
428
- public/lab/lab.iframe-phone.js : \
429
- $(IFRAME_PHONE_SRC_FILES )
430
- $(R_OPTIMIZER ) -o src/lab/iframe-phone/iframe-phone.build.js
431
426
432
427
# ------------------------------------------------
433
428
#
@@ -464,6 +459,7 @@ public/vendor: \
464
459
public/vendor/shutterbug/LICENSE.md \
465
460
public/vendor/lab-sensor-applet-interface-dist \
466
461
public/vendor/sensor-labquest-2-interface/sensor-labquest-2-interface.js \
462
+ public/vendor/iframe-phone/iframe-phone.js \
467
463
public/vendor/chosen/chosen.jquery.min.js \
468
464
public/favicon.ico
469
465
@@ -658,6 +654,14 @@ public/vendor/sensor-labquest-2-interface/sensor-labquest-2-interface.js: \
658
654
public/vendor/sensor-labquest-2-interface :
659
655
mkdir -p public/vendor/sensor-labquest-2-interface
660
656
657
+ public/vendor/iframe-phone/iframe-phone.js : \
658
+ public/vendor/iframe-phone \
659
+ vendor/iframe-phone/dist/iframe-phone.js
660
+ cp vendor/iframe-phone/dist/iframe-phone.js public/vendor/iframe-phone/
661
+
662
+ public/vendor/iframe-phone :
663
+ mkdir -p public/vendor/iframe-phone
664
+
661
665
public/favicon.ico :
662
666
cp -f src/favicon.ico public/favicon.ico
663
667
0 commit comments