blob: 7290fcb240d9d4933e4f255adc0d0c75e2906b31 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
all:
mkdir -p Clean\ System\ Files
$(CC) -c call.c -o Clean\ System\ Files/call.o
clm -l Clean\ System\ Files/call.o square -o square
run:
./square
clean:
$(RM) -r Clean\ System\ Files square
.PHONY: all clean run
|