Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(337)

Side by Side Diff: third_party/lk/dartino/app/dartino-fixed/rules.mk

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 LOCAL_DIR := $(GET_LOCAL_DIR)
2
3 DARTINO_BASE := $(BUILDROOT)/../../../
4
5 MODULE := $(LOCAL_DIR)
6
7 MODULE_DEPS += lib/libm
8
9 MODULE_SRCS += \
10 $(LOCAL_DIR)/fletch_runner.c \
11 $(LOCAL_DIR)/missing.c \
12
13 MODULE_INCLUDES += $(DARTINO_BASE)
14
15 ifneq ($(DEBUG),)
16 EXTRA_OBJS += $(DARTINO_BASE)/out/Debug$(DARTINO_CONFIGURATION)/libdartino.a
17 else
18 EXTRA_OBJS += $(DARTINO_BASE)/out/Release$(DARTINO_CONFIGURATION)/libdartino.a
19 endif
20
21 EXTRA_OBJS += $(LOCAL_DIR)/lines.o
22
23 force_dartino_target:
24
25 $(DARTINO_BASE)/out/Debug$(DARTINO_CONFIGURATION)/libdartino.a: force_dartino_ta rget
26 ninja -C $(DARTINO_BASE) lk -t clean
27 GYP_DEFINES=$(DARTINO_GYP_DEFINES) ninja -C $(DARTINO_BASE) lk
28 ninja -C $(DARTINO_BASE)/out/Debug$(DARTINO_CONFIGURATION)/ libdartino - t clean
29 ninja -C $(DARTINO_BASE)/out/Debug$(DARTINO_CONFIGURATION)/ libdartino
30
31 $(DARTINO_BASE)/out/Release$(DARTINO_CONFIGURATION)/libdartino.a: force_dartino_ target
32 ninja -C $(DARTINO_BASE) lk -t clean
33 GYP_DEFINES=$(DARTINO_GYP_DEFINES) ninja -C $(DARTINO_BASE) lk
34 ninja -C $(DARTINO_BASE)/out/Release$(DARTINO_CONFIGURATION)/ libdartino -t clean
35 ninja -C $(DARTINO_BASE)/out/Release$(DARTINO_CONFIGURATION)/ libdartino
36
37 # put arch local .S files here if developing memcpy/memmove
38
39 include make/module.mk
OLDNEW
« no previous file with comments | « third_party/lk/dartino/app/dartino-fixed/missing.c ('k') | third_party/lk/dartino/app/dartino/fletch_runner.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698