minesweeper

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

Makefile (186B)


      1 ##
      2 # Minsweeper
      3 #
      4 # @file
      5 # @version 0.1
      6 CFLAGS = -g -O -Wall -W -pedantic -std=c99 -Wimplicit-fallthrough=0
      7 LDLIBS = -lraylib -lm
      8 
      9 all:
     10 	gcc $(CFLAGS) main.c -o main.o $(LDLIBS)
     11 
     12 # end