summaryrefslogtreecommitdiff
path: root/libc/misc/locale
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-05-07 02:07:58 +0000
committerEric Andersen <andersen@codepoet.org>2002-05-07 02:07:58 +0000
commitfb1c180bcc1fb5cc4e8ca254bd9a34d888dccf88 (patch)
tree788346c45901ba68a621c98a41e061d97defa045 /libc/misc/locale
parented715392d08f4d38cee6a304ccf831cb665dc92b (diff)
Fixup build a bit more
Diffstat (limited to 'libc/misc/locale')
-rw-r--r--libc/misc/locale/Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/libc/misc/locale/Makefile b/libc/misc/locale/Makefile
index 393336c50..881b0c0e5 100644
--- a/libc/misc/locale/Makefile
+++ b/libc/misc/locale/Makefile
@@ -1,7 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
-# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
+# Copyright (C) 2000-2002 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
@@ -33,7 +33,7 @@ ifeq ($(HAS_LOCALE),true)
OBJS += locale_data.o
endif
-all: $(OBJS) $(LIBC)
+all: data $(OBJS) $(LIBC)
$(LIBC): ar-target
@@ -46,6 +46,12 @@ $(MOBJ): $(MSRC)
$(OBJS): Makefile
+data:
+ifeq ($(HAS_LOCALE),true)
+ make -C $(TOPDIR)/extra/locale
+endif
+
clean:
rm -f *.[oa] *~ core
+.PHONY: data