1
0
mirror of https://github.com/UzixLS/ehs5fs.git synced 2025-07-18 23:01:29 +03:00
This commit is contained in:
UzixLS
2015-09-21 10:11:42 +03:00
commit b1adffb30f
8 changed files with 764 additions and 0 deletions

10
Makefile Normal file
View File

@ -0,0 +1,10 @@
CWARNS = -Wall -Wextra -Wconversion -Wno-unused-parameter
CFLAGS = -std=gnu11 -fmessage-length=0 -O2 -g3
CDEFS = -D_FILE_OFFSET_BITS=64 -DFUSE_USE_VERSION=26
LDFLAGS = -lfuse
all:
$(CC) $(CWARNS) $(CFLAGS) $(CDEFS) $(LDFLAGS) *.c -o ehs5fs
clean:
rm ehs5fs