mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00

The tern deps were in node_modules which is gitignored. Created a Makefile to copy those deps to a new directory and we check that in. Also removed some files that were used to get ANTLR which we aren't using. And cleaned out the commented out reload button from the plugin.xml. Change-Id: I09a5ecb298bbdd9272f9b4a7540d525edb55c4fa
18 lines
316 B
Makefile
18 lines
316 B
Makefile
DIST = \
|
|
dist/acorn/dist/acorn.js \
|
|
dist/acorn/dist/acorn_loose.js \
|
|
dist/acorn/dist/walk.js \
|
|
dist/tern/lib/signal.js \
|
|
dist/tern/lib/tern.js \
|
|
dist/tern/lib/def.js \
|
|
dist/tern/lib/comment.js \
|
|
dist/tern/lib/infer.js
|
|
|
|
all: $(DIST)
|
|
|
|
dist/%: node_modules/%
|
|
@mkdir -p $(dir $@)
|
|
cp $^ $@
|
|
|
|
clean:
|
|
rm -fr dist
|