From: Robert Pengelly Date: Mon, 15 Sep 2025 05:36:44 +0000 (+0100) Subject: Moved source files into command X-Git-Url: https://git.candlhat.org/?a=commitdiff_plain;h=db4741f0a0ff73ed1ce844d53168dc58ba03820b;p=xmake.git Moved source files into command --- 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