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