You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
486 B

  1. MAIN_CFILE = main.c
  2. SUPPORT_CFILES =
  3. #**************************************************************************************************
  4. # raylib makefile for TCC
  5. #**************************************************************************************************
  6. CC = tcc
  7. CFLAGS = -vv -std=c99 -Wall -lmsvcrt -lraylib -lopengl32 -lgdi32 -lkernel32 -lshell32 -luser32 -lwinmm -Wl,-subsystem=gui
  8. OUTPUT = $(outputExe)
  9. all:
  10. $(CC) -o $(OUTPUT) $(MAIN_CFILE) $(SUPPORT_CFILES) $(CFLAGS)