7 lines
68 B
Makefile
7 lines
68 B
Makefile
|
|
||
|
all: main
|
||
|
|
||
|
main: inf_loop.s main.c
|
||
|
gcc -o main inf_loop.s main.c
|
||
|
|