mirror of
https://github.com/nanochess/pretty6502.git
synced 2024-12-27 00:29:18 +00:00
14 lines
195 B
Makefile
14 lines
195 B
Makefile
|
# Ultra simple makefile for pretty6502
|
||
|
# by Oscar Toledo G.
|
||
|
# https://github.com/nanochess/pretty6502
|
||
|
#
|
||
|
build:
|
||
|
@cc pretty6502.c -o pretty6502
|
||
|
|
||
|
clean:
|
||
|
@rm pretty6502
|
||
|
|
||
|
love:
|
||
|
@echo "...not war"
|
||
|
|