aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorVictor Mignot <victor@vmignot.fr>2026-03-04 15:04:26 +0100
committerVictor Mignot <victor@vmignot.fr>2026-03-09 19:53:55 +0100
commit340ca1a5bdf9a03819872f7370891b6bf5529441 (patch)
tree901c39d96011d1960bdb50800c055d863fd2f218 /Makefile
parent309765abe1eedb58c2b8271793257b198012f445 (diff)
downloadfutiles-340ca1a5bdf9a03819872f7370891b6bf5529441.tar.gz
Add `cat` implementationHEADmain
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c3bc558..77f38f4 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ CFLAGS :=
CFLAGS_EXTRA := -std=c23 -Wpedantic -Wall -Wextra
LDFLAGS :=
PREFIX :=
-UTILS := true false basename
+UTILS := true false basename cat
BIN := futiles
OBJS := $(patsubst %.c, %.o, $(wildcard src/*.c))