forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile.kernel-development
More file actions
30 lines (21 loc) · 1.11 KB
/
Makefile.kernel-development
File metadata and controls
30 lines (21 loc) · 1.11 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
NAME=libkernel-development
TYPE=archive
include ../rules/environment.linux.makefile
SOURCES= \
ide.cpp internal_development.cpp lextable.cpp mode_development.cpp \
deploy.cpp deploy_linux.cpp deploy_windows.cpp \
deploy_macosx.cpp deploy_capsule.cpp deploy_sign.cpp deploy_file.cpp \
deploy_dmg.cpp bsdiff_build.cpp encodederrors.cpp
MLC_LIST = libkernel-modules.list
KERNEL_DEFINES=\
MODE_DEVELOPMENT
../util/perfect/perfect.linux-$(ARCH): ../util/perfect/perfect.c
$(CC) ../util/perfect/perfect.c -o ../util/perfect/perfect.linux-$(ARCH)
src/hashedstrings.cpp: src/lextable.cpp ../util/perfect/perfect.linux-$(ARCH)
# ../prebuilt/bin/Revolution.lnx "./hash_strings.rev" "./src/lextable.cpp" "./src/hashedstrings.cpp" "../prebuilt/bin/perfect.lnx"
../util/hash_strings.pl ./src/lextable.cpp ./src/hashedstrings.cpp perfect.linux-$(ARCH)
encodederrors.cpp: src/executionerrors.h src/parseerrors.h
# ../prebuilt/bin/Revolution.lnx "./encode_errors.rev" "./src" "./src/encodederrors.cpp"
../util/encode_errors.pl ./src ./src/encodederrors.cpp
$(CACHE_DIR)/ide.o: src/hashedstrings.cpp
include Makefile.kernel-common