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.
 
 
 
 

15 line
256 B

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