Build xcode project from Makefile

This commit is contained in:
Bjorn Winckler
2009-09-29 03:02:30 +02:00
parent 25d39a282a
commit 04a6eb68d0
3 changed files with 3680 additions and 4327 deletions
+14 -2
View File
@@ -1265,7 +1265,7 @@ MACVIMGUI_INSTALL = install_normal
MACVIMGUI_TARGETS =
MACVIMGUI_MAN_TARGETS =
MACVIMGUI_TESTTARGET = gui
MACVIMGUI_BUNDLE =
MACVIMGUI_BUNDLE = macvim
# All GUI files
ALL_GUI_SRC = gui.c gui_gtk.c gui_gtk_f.c gui_motif.c gui_xmdlg.c gui_xmebw.c gui_athena.c gui_gtk_x11.c gui_x11.c gui_at_sb.c gui_at_fs.c pty.c
@@ -2211,7 +2211,7 @@ uninstall_runtime:
# Clean up all the files that have been produced, except configure's.
# We support common typing mistakes for Juergen! :-)
clean celan: testclean
clean celan: testclean macvimclean
-rm -f *.o objects/* core $(VIMTARGET).core $(VIMTARGET) vim xxd/*.o
-rm -f $(TOOLS) auto/osdef.h auto/pathdef.c auto/if_perl.c
-rm -f conftest* *~ auto/link.sed
@@ -2686,6 +2686,18 @@ $(APPDIR)/Contents:
-$(SHELL) ./mkinstalldirs $(RESDIR)/English.lproj
##############################################################################
### MacVim GUI
.PHONY: macvim macvimclean
macvim: $(VIMTARGET)
xcodebuild -project MacVim/MacVim.xcodeproj $(XCODEFLAGS)
macvimclean:
if test -d MacVim; then \
xcodebuild -project MacVim/MacVim.xcodeproj clean; \
fi
###############################################################################
### (automatically generated by 'make depend')
### Dependencies:
+3665 -4325
View File
File diff suppressed because it is too large Load Diff
+1
View File
@@ -21,6 +21,7 @@ CC = @CC@
DEFS = @DEFS@
CFLAGS = @CFLAGS@
CPPFLAGS = @CPPFLAGS@
XCODEFLAGS = @XCODEFLAGS@
srcdir = @srcdir@
VPATH = @srcdir@
LDFLAGS = @LDFLAGS@