mirror of
https://github.com/nanochess/pretty6502.git
synced 2024-12-26 09:29:40 +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"
|
|
|