aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: ea72a7e9548d6c0e4497e702747103eccdc89d11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CC=gcc
CFLAGS=-Wall -Werror -g -O3
LDFLAGS=-lm -lpthread

.PHONY: all clean

all: pso

pso: pso.c pso.h problems.h
	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ pso.c

clean:
	rm -rf pso