10 lines
62 B
Makefile
10 lines
62 B
Makefile
CFLAGS ?= -Wall -g
|
|
|
|
all: ex1
|
|
|
|
clean:
|
|
rm -f ex1
|
|
|
|
test:
|
|
./ex1
|