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.
 
 
 
 

12 rivejä
207 B

  1. all: main xy2d
  2. xy2d: xy2d.c
  3. $(CC) -W -Wall $^ -o $@
  4. main: main.c
  5. $(CC) -Wall -O3 -funroll-loops -ffast-math -W -Wall $^ -o $@ $$(pkg-config --cflags --libs sdl) -lSDL_image -lm
  6. clean:
  7. rm -f xy2d main