10 lines
105 B
Makefile
10 lines
105 B
Makefile
all: pile file
|
|
|
|
pile: pile.c
|
|
gcc pile.c -o pile
|
|
|
|
file: file.c
|
|
gcc file.c -o file
|
|
|
|
clean:
|
|
rm file pile
|