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.

Makefile 133B

12345
  1. CFILES=$(shell find src -name '*.c')
  2. CFLAGS=-std=c99 $(shell sdl2-config --cflags --libs)
  3. build:
  4. gcc $(CFLAGS) -o evosim $(CFILES)