Changeset 49539 in vbox for trunk/src/VBox/Main/cbinding/makefile.tstXPCOMCGlue
- Timestamp:
- Nov 18, 2013 4:52:10 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 90719
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/cbinding/makefile.tstXPCOMCGlue
r48225 r49539 1 1 # $Revision$ 2 ## @file makefile.tst LinuxC2 ## @file makefile.tstXPCOMCGlue 3 3 # Makefile for sample program illustrating use of C binding for XPCOM. 4 4 # … … 24 24 25 25 .PHONY: all 26 all: tstXPCOMCGlue tstXPCOMCEvent26 all: tstXPCOMCGlue 27 27 28 28 .PHONY: clean 29 29 clean: 30 rm -f tstXPCOMCGlue.o tstXPCOMCGlue VBoxXPCOMCGlue.o tstXPCOMCEvent.o tstXPCOMCEvent30 rm -f tstXPCOMCGlue.o tstXPCOMCGlue VBoxXPCOMCGlue.o 31 31 32 32 tstXPCOMCGlue: tstXPCOMCGlue.o VBoxXPCOMCGlue.o 33 $(CC) -o $@ $^ -ldl 33 $(CC) -o $@ $^ -ldl -lpthread 34 34 35 35 tstXPCOMCGlue.o: tstXPCOMCGlue.c 36 36 $(CC) $(CFLAGS) $(INCS_XPCOM) $(GLUE_INC) -o $@ -c $< 37 37 38 tstXPCOMCEvent: tstXPCOMCEvent.o VBoxXPCOMCGlue.o39 $(CC) -o $@ $^ -ldl -lpthread40 41 tstXPCOMCEvent.o: tstXPCOMCEvent.c42 $(CC) $(CFLAGS) $(INCS_XPCOM) $(GLUE_INC) -o $@ -c $<43 44 38 VBoxXPCOMCGlue.o: $(GLUE_DIR)/VBoxXPCOMCGlue.c 45 39 $(CC) $(CFLAGS) $(INCS_XPCOM) $(GLUE_INC) -o $@ -c $<
Note:
See TracChangeset
for help on using the changeset viewer.