summaryrefslogtreecommitdiff
path: root/ctoclean/Makefile
blob: 7c7047a89764d274c6d1fc53ca5e853f1cc46ce5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
all:
	mkdir -p Clean\ System\ Files
	$(CC) -c call.c -o Clean\ System\ Files/call.o
	clm square -o square

run:
	./square

clean:
	rm -rf Clean\ System\ Files square

.PHONY: clean