|
@@ -27,6 +27,12 @@ LIBC=$(TOPDIR)libc.a
|
|
|
CSRC=localtime.c gmtime.c asctime.c ctime.c asc_conv.c tm_conv.c mktime.c \
|
|
CSRC=localtime.c gmtime.c asctime.c ctime.c asc_conv.c tm_conv.c mktime.c \
|
|
|
localtime_r.c gmtime_r.c asctime_r.c ctime_r.c utimes.c adjtime.c \
|
|
localtime_r.c gmtime_r.c asctime_r.c ctime_r.c utimes.c adjtime.c \
|
|
|
strftime.c clock.c times.c difftime.c
|
|
strftime.c clock.c times.c difftime.c
|
|
|
|
|
+
|
|
|
|
|
+# strftime.c causes an internal compiler error with m68k-pic-coff-gcc.
|
|
|
|
|
+ifneq ($(TARGET_ARCH),m68k)
|
|
|
|
|
+ CSRC += strftime.c
|
|
|
|
|
+endif
|
|
|
|
|
+
|
|
|
COBJS=$(patsubst %.c,%.o, $(CSRC))
|
|
COBJS=$(patsubst %.c,%.o, $(CSRC))
|
|
|
OBJS=$(COBJS)
|
|
OBJS=$(COBJS)
|
|
|
|
|
|