go-sandbox/test_c/Makefile
2024-12-05 14:56:57 -05:00

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