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.
|
- all: main xy2d vote
-
- xy2d: xy2d.c
- $(CC) -W -Wall $^ -o $@
-
- vote: vote.c
- $(CC) -W -Wall $^ -o $@
-
- main: main.c
- $(CC) -Wall -O3 -funroll-loops -ffast-math -W -Wall $^ -o $@ $$(pkg-config --cflags --libs sdl) -lSDL_image -lm
-
- clean:
- rm -f xy2d vote main
|