mirror of
https://github.com/criyle/go-sandbox.git
synced 2025-11-04 14:49:53 +08:00
11 lines
289 B
Makefile
11 lines
289 B
Makefile
all: helloworld/main.test nonzeroexit/main.test
|
|
|
|
helloworld/main.test: helloworld/main.cpp
|
|
g++ helloworld/main.cpp -o helloworld/main.test
|
|
|
|
nonzeroexit/main.test: nonzeroexit/main.cpp
|
|
g++ nonzeroexit/main.cpp -o nonzeroexit/main.test
|
|
|
|
clean:
|
|
rm -rf helloworld/*.test nonzeroexit/*.test
|