9 lines
82 B
Makefile
9 lines
82 B
Makefile
|
|
all: macro8x
|
|
|
|
macro8x: macro8x.c
|
|
cc -o macro8x macro8x.c
|
|
|
|
clean:
|
|
rm -f macro8x
|