Changeset 435 for pwntcha/trunk/src/Makefile.am
- Timestamp:
- Jan 8, 2005, 11:37:34 PM (18 years ago)
- Location:
- pwntcha/trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pwntcha/trunk/src
- Property svn:ignore
-
old new 4 4 .deps 5 5 pwntcha 6 pwntcha.exe
-
- Property svn:ignore
-
pwntcha/trunk/src/Makefile.am
r426 r435 2 2 3 3 bin_PROGRAMS = pwntcha 4 pwntcha_CFLAGS = $(ADDITIONAL_CFLAGS) -Wall -O65 pwntcha_LDFLAGS = $(ADDITIONAL_LDFLAGS)6 4 pwntcha_SOURCES = \ 7 5 main.c \ … … 17 15 vbulletin.c \ 18 16 test.c 17 pwntcha_CFLAGS = $(ADDITIONAL_CFLAGS) -Wall -O6 18 pwntcha_LDFLAGS = $(ADDITIONAL_LDFLAGS) 19 pwntcha_LDADD = $(ADDITIONAL_LDADD) 19 20 21 if USE_OLE 22 ADDITIONAL_CFLAGS = 23 ADDITIONAL_LDFLAGS = 24 ADDITIONAL_LDADD = -luuid -loleaut32 -lole32 -lgdi32 25 else 20 26 if USE_SDL 21 27 ADDITIONAL_CFLAGS = `sdl-config --cflags` 22 28 ADDITIONAL_LDFLAGS = `sdl-config --libs` -lSDL_image 29 ADDITIONAL_LDADD = 23 30 else 24 31 if USE_IMLIB2 25 32 ADDITIONAL_CFLAGS = `imlib2-config --cflags` -DX_DISPLAY_MISSING=1 26 33 ADDITIONAL_LDFLAGS = `imlib2-config --libs` 34 ADDITIONAL_LDADD = 27 35 else 28 36 if USE_OPENCV 29 37 ADDITIONAL_CFLAGS = `opencv-config --cflags` 30 38 ADDITIONAL_LDFLAGS = `opencv-config --libs opencv highgui` 39 ADDITIONAL_LDADD = 31 40 else 32 41 ADDITIONAL_CFLAGS = 33 42 ADDITIONAL_LDFLAGS = 43 ADDITIONAL_LDADD = 44 endif 34 45 endif 35 46 endif
Note: See TracChangeset
for help on using the changeset viewer.