10 lines
72 B
Makefile
10 lines
72 B
Makefile
#
|
|
|
|
all: ushow
|
|
|
|
ushow: ushow.c
|
|
cc -o ushow ushow.c
|
|
|
|
clean:
|
|
rm -f ushow
|