12 lines
67 B
Makefile
12 lines
67 B
Makefile
CFLAGS=-Wall -g
|
|
|
|
|
|
all: ex1
|
|
|
|
|
|
clean:
|
|
rm -f ex1
|
|
|
|
|
|
.PHONY: all clean
|