You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

50 lines
967 B

  1. NULL =
  2. bin_PROGRAMS = pwntcha
  3. pwntcha_SOURCES = \
  4. main.c \
  5. filter.c \
  6. font.c \
  7. image.c \
  8. common.h \
  9. authimage.c \
  10. clubic.c \
  11. linuxfr.c \
  12. livejournal.c \
  13. lmt.c \
  14. paypal.c \
  15. phpbb.c \
  16. scode.c \
  17. slashdot.c \
  18. tickets.c \
  19. vbulletin.c \
  20. xanga.c \
  21. easter-eggs.c \
  22. test.c
  23. pwntcha_CFLAGS = $(ADDITIONAL_CFLAGS) -Wall -O6
  24. pwntcha_LDFLAGS = $(ADDITIONAL_LDFLAGS)
  25. pwntcha_LDADD = $(ADDITIONAL_LDADD)
  26. if USE_SDL
  27. ADDITIONAL_CFLAGS = `sdl-config --cflags`
  28. ADDITIONAL_LDFLAGS = `sdl-config --libs` -lSDL_image
  29. ADDITIONAL_LDADD =
  30. else
  31. if USE_IMLIB2
  32. ADDITIONAL_CFLAGS = `imlib2-config --cflags` -DX_DISPLAY_MISSING=1
  33. ADDITIONAL_LDFLAGS = `imlib2-config --libs`
  34. ADDITIONAL_LDADD =
  35. else
  36. if USE_OPENCV
  37. ADDITIONAL_CFLAGS = `opencv-config --cflags`
  38. ADDITIONAL_LDFLAGS = `opencv-config --libs opencv highgui`
  39. ADDITIONAL_LDADD =
  40. else
  41. ADDITIONAL_CFLAGS =
  42. ADDITIONAL_LDFLAGS =
  43. ADDITIONAL_LDADD =
  44. endif
  45. endif
  46. endif