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

Unified Diff: third_party/lk/fletch/app/fletch-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, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/lk/fletch/app/fletch-fixed/missing.c ('k') | third_party/lk/fletch/app/fletch/fletch_runner.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/lk/fletch/app/fletch-fixed/rules.mk
diff --git a/third_party/lk/fletch/app/fletch-fixed/rules.mk b/third_party/lk/fletch/app/fletch-fixed/rules.mk
deleted file mode 100644
index 52ef1940eb1727b5c044c298b7c5ade452862a8e..0000000000000000000000000000000000000000
--- a/third_party/lk/fletch/app/fletch-fixed/rules.mk
+++ /dev/null
@@ -1,39 +0,0 @@
-LOCAL_DIR := $(GET_LOCAL_DIR)
-
-FLETCH_BASE := $(BUILDROOT)/../../../
-
-MODULE := $(LOCAL_DIR)
-
-MODULE_DEPS += lib/libm
-
-MODULE_SRCS += \
- $(LOCAL_DIR)/fletch_runner.c \
- $(LOCAL_DIR)/missing.c \
-
-MODULE_INCLUDES += $(FLETCH_BASE)
-
-ifneq ($(DEBUG),)
-EXTRA_OBJS += $(FLETCH_BASE)/out/Debug$(FLETCH_CONFIGURATION)/libfletch.a
-else
-EXTRA_OBJS += $(FLETCH_BASE)/out/Release$(FLETCH_CONFIGURATION)/libfletch.a
-endif
-
-EXTRA_OBJS += $(LOCAL_DIR)/lines.o
-
-force_fletch_target:
-
-$(FLETCH_BASE)/out/Debug$(FLETCH_CONFIGURATION)/libfletch.a: force_fletch_target
- ninja -C $(FLETCH_BASE) lk -t clean
- GYP_DEFINES=$(FLETCH_GYP_DEFINES) ninja -C $(FLETCH_BASE) lk
- ninja -C $(FLETCH_BASE)/out/Debug$(FLETCH_CONFIGURATION)/ libfletch -t clean
- ninja -C $(FLETCH_BASE)/out/Debug$(FLETCH_CONFIGURATION)/ libfletch
-
-$(FLETCH_BASE)/out/Release$(FLETCH_CONFIGURATION)/libfletch.a: force_fletch_target
- ninja -C $(FLETCH_BASE) lk -t clean
- GYP_DEFINES=$(FLETCH_GYP_DEFINES) ninja -C $(FLETCH_BASE) lk
- ninja -C $(FLETCH_BASE)/out/Release$(FLETCH_CONFIGURATION)/ libfletch -t clean
- ninja -C $(FLETCH_BASE)/out/Release$(FLETCH_CONFIGURATION)/ libfletch
-
-# put arch local .S files here if developing memcpy/memmove
-
-include make/module.mk
« no previous file with comments | « third_party/lk/fletch/app/fletch-fixed/missing.c ('k') | third_party/lk/fletch/app/fletch/fletch_runner.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698