Test communication

This commit is contained in:
2024-04-05 12:26:59 +02:00
parent a9a5c9f830
commit 3dd766efdb
4 changed files with 16 additions and 7 deletions

View File

@@ -7,11 +7,11 @@ MAKE ?= make
all: build
@true
build: build/agent.o
ar -crs build/libagent.a build/agent.o
build: build/agent.o syscall/jasmin_syscall.o
ar -crs build/libagent.a build/agent.o syscall/jasmin_syscall.o
build/%.o: build/%.S syscall/jasmin_syscall.o
$(CC) $< syscall/jasmin_syscall.o -c -o $@
build/%.o: build/%.S
$(CC) $< -c -o $@
clean:
rm build/* 2> /dev/null || true