diff -Naur QuickLaunch/source/Makefile QuickLaunch-haiku/source/Makefile
|
old
|
new
|
|
| | 1 | gccver= $(shell setgcc | tail -c -2) |
| | 2 | NAME= QuickLaunch |
| | 3 | TYPE= APP |
| | 4 | SRCS= QuickLaunch.cpp QLFilter.cpp MainWindow.cpp MainListView.cpp MainListItem.cpp SetupWindow.cpp SetupListView.cpp QLSettings.cpp |
| | 5 | RSRCS= QuickLaunch.rsrc |
| | 6 | ifeq ($(gccver),2) |
| | 7 | LIBS= /boot/develop/lib/x86/libbe.so /boot/system/lib/libstdc++.r4.so /boot/develop/lib/x86/libroot_debug.so /boot/develop/lib/x86/libtracker.so |
| | 8 | else |
| | 9 | LIBS= /boot/system/lib/gcc4/libbe.so /boot/system/lib/gcc4/libstdc++.so /boot/system/lib/gcc4/libroot_debug.so /boot/system/lib/gcc4/libtracker.so |
| | 10 | endif |
| | 11 | LIBPATHS= |
| | 12 | SYSTEM_INCLUDE_PATHS= /boot/develop/headers/be /boot/develop/headers/cpp /boot/develop/headers/posix /boot/home/config/include |
| | 13 | LOCAL_INCLUDE_PATHS= |
| | 14 | OPTIMIZE=FULL |
| | 15 | # specify any preprocessor symbols to be defined. The symbols will not |
| | 16 | # have their values set automatically; you must supply the value (if any) |
| | 17 | # to use. For example, setting DEFINES to "DEBUG=1" will cause the |
| | 18 | # compiler option "-DDEBUG=1" to be used. Setting DEFINES to "DEBUG" |
| | 19 | # would pass "-DDEBUG" on the compiler's command line. |
| | 20 | DEFINES= |
| | 21 | # specify special warning levels |
| | 22 | # if unspecified default warnings will be used |
| | 23 | # NONE = supress all warnings |
| | 24 | # ALL = enable all warnings |
| | 25 | WARNINGS = |
| | 26 | # Build with debugging symbols if set to TRUE |
| | 27 | SYMBOLS= |
| | 28 | COMPILER_FLAGS= |
| | 29 | LINKER_FLAGS= |
| | 30 | |
| | 31 | ## include the makefile-engine |
| | 32 | include $(BUILDHOME)/etc/makefile-engine |