Raymond Toy pushed to branch issue-363-add-version-number at cmucl / cmucl Commits: d53d3f7d by Raymond Toy at 2025-02-04T13:13:07-08:00 Remove unneeded rules Since build.sh creates cmucl-version.h, we don't need to have a rule to create it here. It's a dependency that better exist when compiling lisp. Also, since we get the version from cmucl-version.h, we don't need to have a special rule for building lisp.o. Remove it. - - - - - 1 changed file: - src/lisp/GNUmakefile Changes: ===================================== src/lisp/GNUmakefile ===================================== @@ -51,12 +51,6 @@ version.o : version.c version mv ,version version $(CC) ${CFLAGS} $(CPPFLAGS) -DVERSION=`cat version` -c $< -lisp.o : lisp.c cmucl-version.h - $(CC) ${CFLAGS} $(CPPFLAGS) -c $< - -cmucl-version.h: - ../../bin/git-version.sh -f > cmucl-version.h - lisp: ${OBJS} version.o $(CC) -g ${OS_LINK_FLAGS} -o ,lisp $^ ${OS_LIBS} -lm mv -f ,lisp lisp View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/d53d3f7d541aa4c44c61c902... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/d53d3f7d541aa4c44c61c902... You're receiving this email because of your account on gitlab.common-lisp.net.
participants (1)
-
Raymond Toy (@rtoy)