Repo init

This commit is contained in:
Jan Potocki
2020-06-22 17:31:00 +02:00
commit 5f9799c55c
11 changed files with 269 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
all: hello
hello: hello.o
ld hello.o -o hello
hello.o: hello.s
as hello.s -o hello.o
clean:
rm hello.o hello