source: pwntcha/trunk/src/Makefile.am @ 385

Last change on this file since 385 was 385, checked in by Sam Hocevar, 18 years ago
  • moved generic filter functions to filters.c
  • fixed uninitialised value in trick().
File size: 491 bytes
Line 
1NULL =
2
3bin_PROGRAMS = pwntcha
4pwntcha_CFLAGS = $(ADDITIONAL_CFLAGS) -Wall -O6
5pwntcha_LDFLAGS = $(ADDITIONAL_LDFLAGS)
6pwntcha_SOURCES = main.c image.c filters.c slashdot.c common.h
7
8if USE_IMLIB2
9ADDITIONAL_CFLAGS = `imlib2-config --cflags` -DX_DISPLAY_MISSING=1
10ADDITIONAL_LDFLAGS = `imlib2-config --libs`
11else
12if USE_OPENCV
13ADDITIONAL_CFLAGS = `opencv-config --cflags`
14ADDITIONAL_LDFLAGS = `opencv-config --libs opencv highgui`
15else
16ADDITIONAL_CFLAGS =
17ADDITIONAL_LDFLAGS =
18endif
19endif
20
Note: See TracBrowser for help on using the repository browser.