Differences From Artifact [5f905141cd]:
- File make-libf.make.in — part of check-in [2cca86d9a0] at 2022-01-23 18:57:32 on branch trunk — Now that the v1 diff code is gone, consolidated diff.c/diff2.c into diff.c and moved the dibu-specific code into the new dibu.c. That required exposing fsl__diff_optimize() via internal.h so that fnc.c can see it. (Edit: in hindsight, should have renamed diff2.c to dibu.c since most of diff2.c was dibu stuff. Oh, well.) (user: stephan size: 11732)
To Artifact [cd1c9bd278]:
- File make-libf.make.in — part of check-in [236c0f8864] at 2022-01-27 14:42:01 on branch trunk — Re-did C dependencies generation to use tools/mkcdep.c instead of GCC. MUCH faster and less kludgy. (user: stephan size: 11832)
︙ | ︙ | |||
90 91 92 93 94 95 96 97 98 99 100 101 102 103 | FSL.SRC.BASE += ext_regexp.c endif FSL.SRC := $(FSL.SRC.BASE) ifeq (1,$(HAVE_OWN_SQLITE)) FSL.SRC += $(SQLITE3.C) endif FSL.OBJ := $(patsubst %.c,%.o,$(FSL.SRC)) $(FSL.OBJ): $(LIBF.MAKEFILE) CLEAN.libf += $(FSL.OBJ) $(FSL.OBJ): CPPFLAGS+=$(LIBF.CPPFLAGS) | > > > > | 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | FSL.SRC.BASE += ext_regexp.c endif FSL.SRC := $(FSL.SRC.BASE) ifeq (1,$(HAVE_OWN_SQLITE)) FSL.SRC += $(SQLITE3.C) endif $(eval $(call ADD_C_DEPS,libf,$(FSL.SRC))) $(libfossil.library): $(DEPS.libf.make) libf: deps-libf FSL.OBJ := $(patsubst %.c,%.o,$(FSL.SRC)) $(FSL.OBJ): $(LIBF.MAKEFILE) CLEAN.libf += $(FSL.OBJ) $(FSL.OBJ): CPPFLAGS+=$(LIBF.CPPFLAGS) |
︙ | ︙ |