fcoreutils 0.22.0

High-performance GNU coreutils replacement with SIMD and parallelism
Documentation
1
2
3
4
5
6
7
8
9
10
11
# chgrp — GNU-compatible group change in x86-64 assembly
TARGET    = fchgrp
LIB_SRCS  =
UNIFIED_SRC = unified/fchgrp_unified.asm

include ../../Makefile.inc

# Override dev to build from unified since no tools/ dir
dev: $(UNIFIED_SRC)
	$(NASM) -f bin $(UNIFIED_SRC) -o $(TARGET)
	chmod +x $(TARGET)