Blame view

examples01-pl/04-malloc/makefile 84 Bytes
1
2
3
4
5
6
7
malloc: malloc.c
	gcc -g -Wall -pedantic $< -o $@

.PHONY: clean

clean:
	-rm malloc