diff options
author | mutantturkey <mutantturke@gmail.com> | 2012-07-03 10:13:41 -0400 |
---|---|---|
committer | mutantturkey <mutantturke@gmail.com> | 2012-07-03 10:13:41 -0400 |
commit | 57f0f93a4398ba6b07f0cb3011cf5152f7d9c5a1 (patch) | |
tree | 1d38a5a432a1f8377eef45dde8bb32d85cc5dbec /fly-tools/Makefile | |
parent | c80efaa3a6837ecb7360cb5c3b73728de98c0a14 (diff) |
makefile
Diffstat (limited to 'fly-tools/Makefile')
-rw-r--r-- | fly-tools/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/fly-tools/Makefile b/fly-tools/Makefile index 1ba4ecc..1952419 100644 --- a/fly-tools/Makefile +++ b/fly-tools/Makefile @@ -1,10 +1,12 @@ CPPC = g++ CC = gcc CPPFLAGS = -O2 -Wall -s $(shell pkg-config --cflags --libs ImageMagick++ gsl) -CFLAGS = -O2 -Wall -s $(shell pkg-config --cflags --libs MagickWand) +CFLAGS = -O2 -Wall -s $(shell pkg-config --cflags --libs MagickWand gsl) -all: FilterFlyMask FlyTrackingMain mask-generator +all: FilterFlyMask FlyTrackingMain mask-generator derive-background +derive-background: + $(CC) background/main.c -std=c99 -o derive-background $(CFLAGS) mask-generator: $(CC) mask/main.c mask/thpool.c -I./mask/ -o mask-generator $(CFLAGS) -pthread FlyTrackingMain: |