Renderer/launcher/Makefile
austin 3782145fb3
All checks were successful
studiorailgun/Renderer/pipeline/head This commit looks good
fix builds
2024-08-16 09:33:27 -04:00

11 lines
369 B
Makefile

#TODO: make support multiple OSes
#detect os: (not that bad)
#https://stackoverflow.com/questions/714100/os-detecting-makefile
#mingw flags to not have console window
#https://stackoverflow.com/questions/4441551/how-to-stop-a-program-compiled-with-mingw-g-from-opening-a-console-window-in
build: ./src/main.c
gcc ./src/main.c -o launcher
clean:
rm -f ./launcher.exe