forked from TritonDataCenter/javascriptlint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
68 lines (52 loc) · 2.33 KB
/
Makefile
File metadata and controls
68 lines (52 loc) · 2.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
BUILDOS=$(shell uname -s)
BUILDDIR = build
INSTALLDIRS = \
$(BUILDDIR)/install \
$(BUILDDIR)/install/javascriptlint \
CSRCS = \
nodepos.c \
pyspidermonkey.c
OBJECTS = $(CSRCS:%.c=$(BUILDDIR)/%.o)
CFLAGS += -fno-strict-aliasing -O -fPIC
SOLDFLAGS += -shared
CPPFLAGS += -DNDEBUG -D_REENTRANT \
-Ispidermonkey/src -Ispidermonkey/src/build \
-I/usr/include \
PY_PYTHON=$(shell python -c "import sys; print(sys.executable)")
PY_PREFIX=$(shell $(PY_PYTHON) -c "import sys; print(sys.real_prefix)" || $(PY_PYTHON) -c "import sys; print(sys.prefix)")
PY_VERSION=$(shell $(PY_PYTHON) -c "import sys; print('.'.join(map(str, sys.version_info[:2])))")
ifeq ($(BUILDOS),Darwin)
PY_ARCH=$(shell $(PY_PYTHON) -c 'import sys; print (sys.maxint > 2**32 and "x86_64" or "i386")')
SOLDFLAGS += $(PY_PREFIX)/Python
CC=gcc -arch $(PY_ARCH)
else
PY_BIT=$(shell $(PY_PYTHON) -c 'import sys; print (sys.maxint > 2**32 and "64" or "32")')
CFLAGS += -m$(PY_BIT)
endif
CPPFLAGS += -I$(PY_PREFIX)/include/python$(PY_VERSION)
SOFILE = $(BUILDDIR)/pyspidermonkey.so
all: $(SOFILE)
$(BUILDDIR) $(INSTALLDIRS):
mkdir -p $@
$(OBJECTS): spidermonkey/src/build/libjs.a spidermonkey/src/build/js_operating_system.h
$(SOFILE): $(OBJECTS)
$(CC) $(CFLAGS) $(SOLDFLAGS) $(LDFLAGS) $(OBJECTS) -Lspidermonkey/src/build -ljs -o $@
$(BUILDDIR)/%.o: javascriptlint/pyspidermonkey/%.c | $(BUILDDIR)
$(CC) -o $@ -c $(CFLAGS) $(CPPFLAGS) $<
spidermonkey/src/build/libjs.a:
(cd spidermonkey/src && CC="$(CC)" CFLAGS="$(CFLAGS)" $(MAKE))
spidermonkey/src/build/js_operating_system.h:
echo "#define XP_UNIX" > $@
clean:
-rm -rf $(BUILDDIR) $(INSTALLDIRS)
-(cd spidermonkey/src && $(MAKE) clean)
install: $(SOFILE) javascriptlint/jsl javascriptlint/jsl | $(INSTALLDIRS)
cp $(SOFILE) build/install
cp javascriptlint/*.py build/install/javascriptlint
sed -e "1s:#\!/usr/bin/env python:#\!$(PY_PYTHON):" javascriptlint/jsl >build/install/jsl
chmod +x build/install/jsl
sed -e "1s:#\!/usr/bin/env python:#\!$(PY_PYTHON):" javascriptlint/jsl.py >build/install/javascriptlint/jsl.py
chmod +x build/install/javascriptlint/jsl.py
sed -e "1s:#\!/usr/bin/env python:#\!$(PY_PYTHON):" javascriptlint/jsparse.py >build/install/javascriptlint/jsparse.py
sed -e "1s:#\!/usr/bin/env python:#\!$(PY_PYTHON):" javascriptlint/lint.py >build/install/javascriptlint/lint.py
.PHONY: install