mirror of
https://github.com/moparisthebest/mailiverse
synced 2024-11-13 12:45:09 -05:00
8 lines
90 B
Makefile
8 lines
90 B
Makefile
|
EXE_NAME = ./test.out
|
||
|
|
||
|
$(EXE_NAME): test.cpp
|
||
|
g++ -o $@ $^
|
||
|
|
||
|
clean:
|
||
|
rm $(EXE_NAME)
|