source:
research/2008-displacement/Makefile
@
2284
Last change on this file since 2284 was 2284, checked in by , 15 years ago | |
---|---|
File size: 256 bytes |
Line | |
---|---|
1 | all: main xy2d vote |
2 | |
3 | xy2d: xy2d.c |
4 | $(CC) -W -Wall $^ -o $@ |
5 | |
6 | vote: vote.c |
7 | $(CC) -W -Wall $^ -o $@ |
8 | |
9 | main: main.c |
10 | $(CC) -Wall -O3 -funroll-loops -ffast-math -W -Wall $^ -o $@ $$(pkg-config --cflags --libs sdl) -lSDL_image -lm |
11 | |
12 | clean: |
13 | rm -f xy2d vote main |
14 |
Note: See TracBrowser
for help on using the repository browser.