update dependencies, use $(AR) and $(RANLIB)

master
leitner 4 years ago
parent e7358e888e
commit fa2eeedcfa

@ -24,6 +24,8 @@ picx32 piex32:
CROSS= CROSS=
#CROSS=i686-mingw- #CROSS=i686-mingw-
CC?=gcc CC?=gcc
AR?=ar
RANLIB?=ranlib
CCC=$(CROSS)$(CC) CCC=$(CROSS)$(CC)
WERROR= WERROR=
WARN=-W -Wall -Wextra $(WERROR) WARN=-W -Wall -Wextra $(WERROR)
@ -172,8 +174,8 @@ $(TAIA_OBJS) $(TAI_OBJS) $(CASE_OBJS) $(ARRAY_OBJS) $(MULT_OBJS) \
$(IO_OBJS) $(CDB_OBJS) $(CRITBIT_OBJS) $(IO_OBJS) $(CDB_OBJS) $(CRITBIT_OBJS)
libowfat.a: $(ALL_OBJS) libowfat.a: $(ALL_OBJS)
$(CROSS)ar cru $@ $(ALL_OBJS) $(CROSS)$(AR) cru $@ $(ALL_OBJS)
-$(CROSS)ranlib $@ -$(CROSS)$(RANLIB) $@
CFLAGS+=-I. CFLAGS+=-I.
CFLAGS_OPT+=-I. CFLAGS_OPT+=-I.
@ -185,8 +187,8 @@ CFLAGS_OPT+=-I.
$(DIET) $(CCC) -c $< $(CFLAGS) $(DIET) $(CCC) -c $< $(CFLAGS)
%.a: %.a:
$(CROSS)ar cru $@ $^ $(CROSS)$(AR) cru $@ $^
-$(CROSS)ranlib $@ -$(CROSS)$(RANLIB) $@
t.o: t.c fmt.h scan.h str.h uint16.h uint32.h stralloc.h socket.h \ t.o: t.c fmt.h scan.h str.h uint16.h uint32.h stralloc.h socket.h \
buffer.h ip4.h ip6.h byte.h mmap.h open.h textcode.h dns.h iopause.h \ buffer.h ip4.h ip6.h byte.h mmap.h open.h textcode.h dns.h iopause.h \

1399
Makefile

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save