summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/Makefile
blob: e550349a57b5dfabac3f515d1e08fd20f3b965dd (plain)
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
OBJS = \
    AST.o \
    Heap/Handle.o \
    Heap/Heap.o \
    Heap/HeapBlock.o \
    Interpreter.o \
    Lexer.o \
    Parser.o \
    Runtime/Array.o \
    Runtime/ArrayPrototype.o \
    Runtime/Cell.o \
    Runtime/ConsoleObject.o \
    Runtime/Function.o \
    Runtime/GlobalObject.o \
    Runtime/MathObject.o \
    Runtime/NativeFunction.o \
    Runtime/NativeProperty.o \
    Runtime/Object.o \
    Runtime/ObjectPrototype.o \
    Runtime/PrimitiveString.o \
    Runtime/ScriptFunction.o \
    Runtime/StringObject.o \
    Runtime/StringPrototype.o \
    Runtime/Value.o \
    Token.o

LIBRARY = libjs.a

install:
	mkdir -p $(SERENITY_BASE_DIR)/Root/usr/include/LibJS/
	cp *.h $(SERENITY_BASE_DIR)/Root/usr/include/LibJS/
	cp $(LIBRARY) $(SERENITY_BASE_DIR)/Root/usr/lib/

include ../../Makefile.common