Changeset 17706 in vbox
- Timestamp:
- Mar 11, 2009 3:53:49 PM (16 years ago)
- Location:
- trunk/src/VBox/Main/cbinding
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/cbinding/Makefile.kmk
r17569 r17706 34 34 XpComCSamples_SOURCES = \ 35 35 tstLinuxC.c \ 36 tstdlOpen.c \37 36 makefile.tstLinuxC=>Makefile 38 37 … … 107 106 $(VBoxXPCOMCGlue_1_TARGET) 108 107 109 #110 # The testcase (also in samples).111 #112 PROGRAMS += tstXPCOMCDynLink113 tstXPCOMCDynLink_TEMPLATE = VBOXR3EXE114 tstXPCOMCDynLink_INCS = \115 $(VBOX_PATH_SDK)/bindings/xpcom/include \116 $(VBOX_PATH_SDK)/bindings/xpcom/include/nsprpub117 tstXPCOMCDynLink_INTERMEDIATES = \118 $(VBOX_PATH_SDK)/bindings/xpcom/include/VirtualBox_CXPCOM.h119 tstXPCOMCDynLink_SOURCES = \120 tstdlOpen.c121 108 endif 122 109 -
trunk/src/VBox/Main/cbinding/makefile.tstLinuxC
r17304 r17706 27 27 28 28 .PHONY: all 29 all: tstLinuxC tstdlOpen29 all: tstLinuxC 30 30 31 31 .PHONY: clean 32 32 clean: 33 rm -f tstLinuxC.o tstLinuxC tstdlOpen.o tstdlOpen33 rm -f tstLinuxC.o tstLinuxC 34 34 35 35 tstLinuxC: tstLinuxC.o … … 38 38 tstLinuxC.o: tstLinuxC.c 39 39 $(CC) $(CFLAGS) $(INCS_XPCOM) -o $@ -c $< 40 41 tstdlOpen: tstdlOpen.o42 $(CC) -o $@ $^ -ldl43 44 tstdlOpen.o: tstdlOpen.c45 $(CC) $(CFLAGS) -DUSE_DYNAMIC_GLUE $(INCS_XPCOM) -o $@ -c $<
Note:
See TracChangeset
for help on using the changeset viewer.