mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2026-09-10 18:08:29 -04:00
10 lines
386 B
Makefile
10 lines
386 B
Makefile
# Recipe lines begin with a tab. CXX and CXXFLAGS are the compiler and options
|
|
# picked in Compiler Explorer, so this builds with whatever is selected above.
|
|
# output.s is the name Compiler Explorer looks for; build something else and put
|
|
# its name in the output file box instead.
|
|
output.s: example.cpp
|
|
$(CXX) $(CXXFLAGS) -Wall -Wextra -o output.s example.cpp
|
|
|
|
clean:
|
|
rm -f output.s
|