Hash :
2b866e5e
Author :
Thomas de Grivel
Date :
2025-06-29T20:27:15
make test
## ext4fs
## Copyright 2025 kmx.io <contact@kmx.io>
##
## Permission is hereby granted to use this software granted the above
## copyright notice and this permission paragraph are included in all
## copies and substantial portions of this software.
##
## THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
## PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
## AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
## THIS SOFTWARE.
PROG = ext4fs_test
HEADERS = ../include/ext4fs.h
SOURCES = ext4fs_test.c ../ext4fs.c
OBJECTS = ext4fs_test.o ../ext4fs.o
CPPFLAGS = -I../include
CFLAGS = -W -Wall -Werror -O0 -g -pedantic -std=c11
all: build
build: ${PROG}
${PROG}: ${OBJECTS} ${HEADERS}
${CC} ${CFLAGS} ${LDFLAGS} ${OBJECTS} -o ${PROG}
test: build
./${PROG}