[uim-commit] r3071 - branches/r5rs/sigscheme/src
yamaken at freedesktop.org
yamaken at freedesktop.org
Wed Feb 1 23:26:00 PST 2006
Author: yamaken
Date: 2006-02-01 23:25:56 -0800 (Wed, 01 Feb 2006)
New Revision: 3071
Modified:
branches/r5rs/sigscheme/src/Makefile.am
Log:
* sigscheme/src/Makefile.am
- (CLEANFILES): Remove $(FUNC_TABLES)
- Add phony target clean-func-tables for developers
Modified: branches/r5rs/sigscheme/src/Makefile.am
===================================================================
--- branches/r5rs/sigscheme/src/Makefile.am 2006-02-02 06:59:29 UTC (rev 3070)
+++ branches/r5rs/sigscheme/src/Makefile.am 2006-02-02 07:25:56 UTC (rev 3071)
@@ -51,8 +51,12 @@
R5RS_PROC_SRCS += deep-cadrs.c
endif
-.PHONY: func-tables
+# For developers
+.PHONY: func-tables clean-func-tables
func-tables: $(FUNC_TABLES)
+clean-func-tables:
+ rm -rf $(FUNC_TABLES)
+
functable-sscm-core.c: $(SSCM_PROC_SRCS) $(BUILD_FUNCTBL_DEPS)
$(BUILD_FUNCTBL) $@ "scm_sscm_core_func_info_table" $(SSCM_PROC_SRCS)
functable-r5rs-syntax.c: syntax.c $(BUILD_FUNCTBL_DEPS)
@@ -174,5 +178,6 @@
sscm_CFLAGS = -Wall
sscm_LDADD = $(top_builddir)/src/libsscm.la
-CLEANFILES = \
- $(FUNC_TABLES)
+# To enable ruby-less build on tarball distribution, we should not delete
+# $(FUNC_TABLES) here.
+CLEANFILES =
More information about the uim-commit
mailing list