Initial commit
[modules.git] / Makefile
1 CXXFLAGS = -fmodules-ts -std=c++20
2 CC = g++
3
4 main: main.o helloworld.o
5
6 clean:
7         rm main *.o
8
9 main.o: main.cc
10 helloworld.o: helloworld.cc