forked from TritonDataCenter/javascriptlint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
64 lines (48 loc) · 1.82 KB
/
Makefile
File metadata and controls
64 lines (48 loc) · 1.82 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
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 \
ifeq ($(BUILDOS),Darwin)
PY_PREFIX=$(shell python2.6 -c "import sys; sys.stdout.write(sys.prefix)")
PY_FIRST_ARCH=$(shell set -x; file `which python2.6` | grep "for architecture" | head -1 | awk '{print $$NF}')
CPPFLAGS += -I$(PY_PREFIX)/include/python2.6
SOLDFLAGS += $(PY_PREFIX)/Python
LD=gcc -arch $(PY_FIRST_ARCH)
CC=gcc -arch $(PY_FIRST_ARCH)
else
# This is known to work on 2.6 and 2.7.
PY_PREFIX=$(shell python -c "import sys; sys.stdout.write(sys.prefix)")
PY_VERSION=$(shell python -c "import sys; import platform; sys.stdout.write(platform.python_version()[0:3])")
CPPFLAGS += \
-I$(PY_PREFIX)/include/python$(PY_VERSION)
endif
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)
$(LD) $(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)" $(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 javascriptlint/jsl $(SOFILE) build/install
cp javascriptlint/*.py build/install/javascriptlint
.PHONY: install