comparison src/Makefile @ 540:2df7f3a5eb96

updated for version 7.0153
author vimboss
date Mon, 03 Oct 2005 22:02:18 +0000
parents 52e76e2b5b65
children f43150a669dc
comparison
equal deleted inserted replaced
539:b13dbb7b797c 540:2df7f3a5eb96
1369 normal.c \ 1369 normal.c \
1370 ops.c \ 1370 ops.c \
1371 option.c \ 1371 option.c \
1372 os_unix.c \ 1372 os_unix.c \
1373 auto/pathdef.c \ 1373 auto/pathdef.c \
1374 popupmenu.c \
1374 quickfix.c \ 1375 quickfix.c \
1375 regexp.c \ 1376 regexp.c \
1376 screen.c \ 1377 screen.c \
1377 search.c \ 1378 search.c \
1378 spell.c \ 1379 spell.c \
1439 objects/normal.o \ 1440 objects/normal.o \
1440 objects/ops.o \ 1441 objects/ops.o \
1441 objects/option.o \ 1442 objects/option.o \
1442 objects/os_unix.o \ 1443 objects/os_unix.o \
1443 objects/pathdef.o \ 1444 objects/pathdef.o \
1445 objects/popupmenu.o \
1444 objects/quickfix.o \ 1446 objects/quickfix.o \
1445 objects/regexp.o \ 1447 objects/regexp.o \
1446 objects/screen.o \ 1448 objects/screen.o \
1447 objects/search.o \ 1449 objects/search.o \
1448 objects/spell.o \ 1450 objects/spell.o \
1498 mbyte.pro \ 1500 mbyte.pro \
1499 normal.pro \ 1501 normal.pro \
1500 ops.pro \ 1502 ops.pro \
1501 option.pro \ 1503 option.pro \
1502 os_unix.pro \ 1504 os_unix.pro \
1505 popupmenu.pro \
1503 quickfix.pro \ 1506 quickfix.pro \
1504 regexp.pro \ 1507 regexp.pro \
1505 screen.pro \ 1508 screen.pro \
1506 search.pro \ 1509 search.pro \
1507 spell.pro \ 1510 spell.pro \
1609 1612
1610 # Build the language specific files if they were unpacked. 1613 # Build the language specific files if they were unpacked.
1611 # Generate the converted .mo files separately, it's no problem if this fails. 1614 # Generate the converted .mo files separately, it's no problem if this fails.
1612 languages: 1615 languages:
1613 @if test -n "$(MAKEMO)" -a -f $(PODIR)/Makefile; then \ 1616 @if test -n "$(MAKEMO)" -a -f $(PODIR)/Makefile; then \
1617 $(MAKE) language-check; \
1614 cd $(PODIR); \ 1618 cd $(PODIR); \
1615 CC="$(CC)" $(MAKE) check; \
1616 CC="$(CC)" $(MAKE) prefix=$(DESTDIR)$(prefix); \ 1619 CC="$(CC)" $(MAKE) prefix=$(DESTDIR)$(prefix); \
1617 fi 1620 fi
1618 -@if test -n "$(MAKEMO)" -a -f $(PODIR)/Makefile; then \ 1621 -@if test -n "$(MAKEMO)" -a -f $(PODIR)/Makefile; then \
1619 cd $(PODIR); CC="$(CC)" $(MAKE) prefix=$(DESTDIR)$(prefix) converted; \ 1622 cd $(PODIR); CC="$(CC)" $(MAKE) prefix=$(DESTDIR)$(prefix) converted; \
1620 fi 1623 fi
1624
1625 # Separate target to check the po files for valitidy, because it depends on
1626 # ./vim.
1627 language-check: $(VIMTARGET)
1628 cd $(PODIR); $(MAKE) check VIM=../$(VIMTARGET)
1621 1629
1622 # Update the *.po files for changes in the sources. Only run manually. 1630 # Update the *.po files for changes in the sources. Only run manually.
1623 update-po: 1631 update-po:
1624 cd $(PODIR); CC="$(CC)" $(MAKE) prefix=$(DESTDIR)$(prefix) update-po 1632 cd $(PODIR); CC="$(CC)" $(MAKE) prefix=$(DESTDIR)$(prefix) update-po
1625 1633
2455 $(PYTHON_GETPATH_CFLAGS) 2463 $(PYTHON_GETPATH_CFLAGS)
2456 2464
2457 objects/pty.o: pty.c 2465 objects/pty.o: pty.c
2458 $(CCC) -o $@ pty.c 2466 $(CCC) -o $@ pty.c
2459 2467
2468 objects/popupmenu.o: popupmenu.c
2469 $(CCC) -o $@ popupmenu.c
2470
2460 objects/quickfix.o: quickfix.c 2471 objects/quickfix.o: quickfix.c
2461 $(CCC) -o $@ quickfix.c 2472 $(CCC) -o $@ quickfix.c
2462 2473
2463 objects/regexp.o: regexp.c 2474 objects/regexp.o: regexp.c
2464 $(CCC) -o $@ regexp.c 2475 $(CCC) -o $@ regexp.c