CSS generator from C++ code an alternative for various CSS preprocessors
CC = g++
CFLAGS  = -std=c++20 -Wall 
TARGET = cssgen
  
$(TARGET): main.cpp
	$(CC) $(CFLAGS) -o $(TARGET) main.cpp