diff options
Diffstat (limited to 'libc/misc/locale/Makefile')
-rw-r--r-- | libc/misc/locale/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libc/misc/locale/Makefile b/libc/misc/locale/Makefile index c4b62a661..a54a0e38a 100644 --- a/libc/misc/locale/Makefile +++ b/libc/misc/locale/Makefile @@ -24,19 +24,19 @@ TOPDIR=../../ include $(TOPDIR)Rules.mak LIBC=$(TOPDIR)libc.a -MSRC=locale.c -MOBJ= setlocale.o +CSRC=locale.c localeconv.c +COBJS=$(patsubst %.c,%.o, $(CSRC)) +OBJS=$(COBJS) -OBJS=$(MOBJ) -all: $(MOBJ) $(LIBC) +all: $(OBJS) $(LIBC) $(LIBC): ar-target ar-target: $(OBJS) $(AR) $(ARFLAGS) $(LIBC) $(OBJS) -$(MOBJ): $(MSRC) - $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o +$(COBJS): %.o : %.c + $(CC) $(CFLAGS) -c $< -o $@ $(STRIPTOOL) -x -R .note -R .comment $*.o $(OBJS): Makefile |