|
@@ -0,0 +1,18 @@
|
|
|
+test_2:
|
|
|
+ as test_2.asm -o test_2.o
|
|
|
+ ld test_2.o -o test_2.exe
|
|
|
+
|
|
|
+test_3:
|
|
|
+ as test_3.asm -o test_3.o
|
|
|
+ ld test_3.o -o test_3.exe
|
|
|
+
|
|
|
+test_4:
|
|
|
+ as test_4.asm -o test_4.o
|
|
|
+ ld test_4.o -o test_4.exe
|
|
|
+
|
|
|
+test_5:
|
|
|
+ as test_5.asm -o test_5.o
|
|
|
+ ld test_5.o -o test_5.exe
|
|
|
+
|
|
|
+clean:
|
|
|
+ rm -rf *.o *.exe
|