10 lines
73 B
Makefile
10 lines
73 B
Makefile
#
|
|
|
|
all: maker
|
|
|
|
maker: maker.c
|
|
cc -o maker maker.c
|
|
|
|
clean:
|
|
rm -rf maker
|