From db4741f0a0ff73ed1ce844d53168dc58ba03820b Mon Sep 17 00:00:00 2001 From: Robert Pengelly Date: Mon, 15 Sep 2025 06:36:44 +0100 Subject: [PATCH] Moved source files into command --- Makefile.bsd | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Makefile.bsd b/Makefile.bsd index b048cdf..ae5b33c 100644 --- a/Makefile.bsd +++ b/Makefile.bsd @@ -7,8 +7,6 @@ VPATH := $(SRCDIR) CC := gcc CFLAGS := -D_FILE_OFFSET_BITS=64 -O2 -Wall -Werror -Wextra -ansi -pedantic -std=c90 -CSRC := cstr.c hashtab.c lib.c read.c report.c rule.c variable.c xmake.c - all: xmake clean: @@ -16,5 +14,5 @@ clean: if [ -f xmake ]; then rm -rf xmake; fi if [ -f xmake.exe ]; then rm -rf xmake.exe; fi -xmake: $(CSRC) - $(CC) $(CFLAGS) -o $@ $^ +xmake: cstr.c hashtab.c lib.c read.c report.c rule.c variable.c xmake.c + $(CC) $(CFLAGS) -o $@ cstr.c hashtab.c lib.c read.c report.c rule.c variable.c xmake.c -- 2.34.1