From 7e8574deb44d14ff1efdfb753cb35c887f76003e Mon Sep 17 00:00:00 2001 From: Robert Pengelly Date: Sun, 23 Mar 2025 12:43:46 +0000 Subject: [PATCH] Also support .CURDIR for BSD make compatibility --- Makefile.unix | 1 + Makefile.w32 | 2 ++ xmake.c | 14 +++++++++++--- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/Makefile.unix b/Makefile.unix index 988ee8a..9c4310b 100644 --- a/Makefile.unix +++ b/Makefile.unix @@ -22,5 +22,6 @@ xmake: $(CSRC) endif clean: + if [ -f xmake ]; then rm -rf xmake; fi if [ -f xmake.exe ]; then rm -rf xmake.exe; fi diff --git a/Makefile.w32 b/Makefile.w32 index 7b97bd4..7d64d9e 100644 --- a/Makefile.w32 +++ b/Makefile.w32 @@ -12,8 +12,10 @@ CSRC := cstr.c hashtab.c lib.c read.c report.c rule.c variable.c all: xmake.exe xmake.exe: $(CSRC) + $(CC) $(CFLAGS) -o $@ $^ clean: + if exist xmake ( del /q xmake ) if exist xmake.exe ( del /q xmake.exe ) diff --git a/xmake.c b/xmake.c index 01ede50..b16032d 100644 --- a/xmake.c +++ b/xmake.c @@ -553,14 +553,22 @@ int main (int argc, char **argv) { { - char *name = "CURDIR", *cwd, *path; + char *cwd, *path; size_t len; cwd = get_current_directory (); - len = strlen (name) + 4 + strlen (cwd); + len = strlen ("CURDIR") + 4 + strlen (cwd); path = xmalloc (len + 1); - sprintf (path, "%s ?= %s", name, cwd); + sprintf (path, "CURDIR ?= %s", cwd); + + parse_var_line (path, VAR_ORIGIN_FILE); + free (path); + + len = strlen (".CURDIR") + 4 + strlen (cwd); + + path = xmalloc (len + 1); + sprintf (path, ".CURDIR ?= %s", cwd); parse_var_line (path, VAR_ORIGIN_FILE); free (path); -- 2.34.1