Last change
on this file since 447 was
445,
checked in by Sam Hocevar, 18 years ago
|
- don't duplicate picture in filter functions.
- removed OLE code; it doesn't work and won't be needed.
|
File size:
872 bytes
|
Line | |
---|
1 | NULL = |
---|
2 | |
---|
3 | bin_PROGRAMS = pwntcha |
---|
4 | pwntcha_SOURCES = \ |
---|
5 | main.c \ |
---|
6 | image.c \ |
---|
7 | filters.c \ |
---|
8 | common.h \ |
---|
9 | authimage.c \ |
---|
10 | clubic.c \ |
---|
11 | linuxfr.c \ |
---|
12 | phpbb.c \ |
---|
13 | scode.c \ |
---|
14 | slashdot.c \ |
---|
15 | vbulletin.c \ |
---|
16 | xanga.c \ |
---|
17 | test.c |
---|
18 | pwntcha_CFLAGS = $(ADDITIONAL_CFLAGS) -Wall -O6 |
---|
19 | pwntcha_LDFLAGS = $(ADDITIONAL_LDFLAGS) |
---|
20 | pwntcha_LDADD = $(ADDITIONAL_LDADD) |
---|
21 | |
---|
22 | if USE_SDL |
---|
23 | ADDITIONAL_CFLAGS = `sdl-config --cflags` |
---|
24 | ADDITIONAL_LDFLAGS = `sdl-config --libs` -lSDL_image |
---|
25 | ADDITIONAL_LDADD = |
---|
26 | else |
---|
27 | if USE_IMLIB2 |
---|
28 | ADDITIONAL_CFLAGS = `imlib2-config --cflags` -DX_DISPLAY_MISSING=1 |
---|
29 | ADDITIONAL_LDFLAGS = `imlib2-config --libs` |
---|
30 | ADDITIONAL_LDADD = |
---|
31 | else |
---|
32 | if USE_OPENCV |
---|
33 | ADDITIONAL_CFLAGS = `opencv-config --cflags` |
---|
34 | ADDITIONAL_LDFLAGS = `opencv-config --libs opencv highgui` |
---|
35 | ADDITIONAL_LDADD = |
---|
36 | else |
---|
37 | ADDITIONAL_CFLAGS = |
---|
38 | ADDITIONAL_LDFLAGS = |
---|
39 | ADDITIONAL_LDADD = |
---|
40 | endif |
---|
41 | endif |
---|
42 | endif |
---|
43 | |
---|
Note: See
TracBrowser
for help on using the repository browser.