mirror of
https://github.com/livingcomputermuseum/cpus-pdp8.git
synced 2026-01-13 15:37:04 +00:00
10 lines
72 B
Makefile
10 lines
72 B
Makefile
#
|
|
|
|
all: ushow
|
|
|
|
ushow: ushow.c
|
|
cc -o ushow ushow.c
|
|
|
|
clean:
|
|
rm -f ushow
|