Files
AK2-stuff/lab1-v3/Makefile
T
2020-04-04 13:15:45 +02:00

11 lines
88 B
Makefile

hex: hex.o
ld hex.o -o hex
hex.o: hex.s
as hex.s -o hex.o
all: hex
clean:
rm hex