mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 19:58:11 +00:00

This object will (soon) be implicitly created to wrap a primitive string when one is used in a context that requires an object.
20 lines
392 B
Makefile
20 lines
392 B
Makefile
OBJS = \
|
|
AST.o \
|
|
Cell.o \
|
|
Function.o \
|
|
Heap.o \
|
|
HeapBlock.o \
|
|
Interpreter.o \
|
|
Object.o \
|
|
PrimitiveString.o \
|
|
StringObject.o \
|
|
Value.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
|