Remove compiled syscall file
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,2 +1,3 @@
|
||||
build
|
||||
result
|
||||
*.o
|
||||
|
||||
1
Makefile
1
Makefile
@@ -15,6 +15,7 @@ build/%.o: build/%.S
|
||||
|
||||
clean:
|
||||
rm build/* 2> /dev/null || true
|
||||
$(MAKE) -C syscall clean
|
||||
|
||||
build/%.S: src/%.jazz
|
||||
JASMINPATH="Jade=libjade/src/" $(JC) $< -o $@
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
.PHONY: clean
|
||||
|
||||
all: jasmin_syscall.o
|
||||
|
||||
jasmin_syscall.o: jasmin_syscall.c jasmin_syscall.h
|
||||
|
||||
clean:
|
||||
rm jasmin_syscall.o || true
|
||||
|
||||
Binary file not shown.
Reference in New Issue
Block a user