Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

12 lignes
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