You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
232 B
15 lines
232 B
EXE=a.out
|
|
CC=gcc
|
|
CFLAGS=-lm -lcrypt -O2 -Wall -Wextra -pipe -DONLINE_JUDGE
|
|
OBJ=main.cpp
|
|
|
|
.PHONY: clean test
|
|
test: $(EXE)
|
|
./$(EXE) <d0 | diff --color=always a0 -
|
|
|
|
|
|
$(EXE): $(OBJ)
|
|
$(CC) $(CFLAGS) -o $@ $(OBJ)
|
|
|
|
clean:
|
|
rm -rf $(EXE)
|