getting inode number using freeList is breaking program, will fix later

This commit is contained in:
2022-11-25 23:51:27 -06:00
parent 81647a3100
commit 1c237c1bcc
5 changed files with 75 additions and 43 deletions
+4 -3
View File
@@ -1,5 +1,6 @@
UNITYPATH = test/unity
INC := -I include
WARNINGS := -m64 -pedantic -Wall -Wshadow -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes
UNITY := -I $(UNITYPATH)
all: compile link
@@ -16,9 +17,9 @@ test: testCompile testLink testExec
testCompile:
gcc $(INC) $(UNITY) -g -c -o build/unity.o $(UNITYPATH)/unity.c
gcc $(INC) -c -o build/main.o src/main.c
gcc $(INC) -c -o build/fuse.o src/fuse.c
gcc $(INC) -c -o build/fuseactions.o src/fuseactions.c
gcc $(INC) $(WARNINGS) -c -o build/main.o src/main.c
gcc $(INC) $(WARNINGS) -c -o build/fuse.o src/fuse.c
gcc $(INC) $(WARNINGS) -c -o build/fuseactions.o src/fuseactions.c
gcc $(INC) -g -c -o build/test.o test/test.c
testLink: