Changeset 6675 in vbox for trunk/src/VBox/Additions/x11
- Timestamp:
- Jan 31, 2008 7:26:14 PM (17 years ago)
- Location:
- trunk/src/VBox/Additions/x11
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/Makefile.kmk
r6356 r6675 21 21 # Include sub-dirs. 22 22 SUBDIRS = 23 if1of ($(BUILD_TARGET),l inux solaris)23 if1of ($(BUILD_TARGET),l4 linux solaris) 24 24 SUBDIRS += \ 25 25 xclient \ -
trunk/src/VBox/Additions/x11/xclient/Makefile.kmk
r6618 r6675 23 23 # 24 24 PROGRAMS += VBoxClient 25 ifneq ($(BUILD_TARGET),linux) ## @todo Elimiate this too. 25 if1of ($(BUILD_TARGET),linux l4) ## @todo Elimiate this too. 26 VBoxClient_TEMPLATE = VBOXLNX32GUESTR3EXE 27 else 26 28 VBoxClient_TEMPLATE = VBOXGUESTR3CPPEXE 27 else28 VBoxClient_TEMPLATE = VBOXLNX32GUESTR3EXE29 29 endif 30 30 VBoxClient_DEFS += VBOX_X11_CLIPBOARD VBOX_HGCM … … 33 33 main.cpp 34 34 35 ifneq ($(BUILD_TARGET),linux) 36 VBoxClient_SOURCES += \ 37 clipboard-new.cpp 38 VBoxClient_LIBS = \ 39 $(VBOX_LIB_IPRT_GUEST_R3) \ 40 $(VBOX_LIB_VBGL_R3) \ 41 X11 \ 42 Xt 43 else 35 if1of ($(BUILD_TARGET),linux l4) 44 36 VBoxClient_SOURCES += \ 45 37 clipboard.cpp … … 54 46 Xt \ 55 47 X11 56 endif # target linux 48 else 49 VBoxClient_SOURCES += \ 50 clipboard-new.cpp 51 VBoxClient_LIBS = \ 52 $(VBOX_LIB_IPRT_GUEST_R3) \ 53 $(VBOX_LIB_VBGL_R3) \ 54 X11 \ 55 Xt 56 endif # ! linux || l4 57 57 58 58 # -
trunk/src/VBox/Additions/x11/xgraphics/Makefile.kmk
r6673 r6675 18 18 DEPTH = ../../../../.. 19 19 include $(PATH_KBUILD)/header.kmk 20 21 ifeq ($(BUILD_TARGET),l4) ## @todo Frank, check if we can remove this now.22 SUFF_DLL = .so23 endif24 20 25 21 #
Note:
See TracChangeset
for help on using the changeset viewer.