diff options
author | Matt Wilson <msw@redhat.com> | 1999-08-02 15:16:56 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-08-02 15:16:56 +0000 |
commit | 5e152be2dd6f708410cb46e671245e649991f92b (patch) | |
tree | ab9e4b573d5217f6b3e4fdcfaa2370fa87483bae /Makefile | |
parent | 671e0b107cb387e87d2a9763a0a73e81e8e81c02 (diff) | |
download | anaconda-5e152be2dd6f708410cb46e671245e649991f92b.tar.gz anaconda-5e152be2dd6f708410cb46e671245e649991f92b.tar.xz anaconda-5e152be2dd6f708410cb46e671245e649991f92b.zip |
o New interface requirements: exceptionWindow, messageWindow
o Network device configuration, configuration file writing
o Root password dialog, /etc/password modification
o isys has the ntoa and aton functions in it now
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -1,8 +1,9 @@ -SUBDIRS = rpmmodule isys balkan loader +SUBDIRS = rpmmodule isys balkan loader po TOPDIR = ../../.. DESTDIR = $(TOPDIR)/RedHat/instimage/usr/bin +CATALOGS = po/anaconda-text.pot -all: subdirs +all: subdirs $(CATALOGS) clean: for d in $(SUBDIRS); do make TOPDIR=../$(TOPDIR) -C $$d clean; done @@ -14,6 +15,3 @@ install: all mkdir -p $(DESTDIR) cp -a anaconda *.py $(DESTDIR) for d in $(SUBDIRS); do make TOPDIR=../$(TOPDIR) -C $$d install; done - -text.po: text.py - xgettext --default-domain=text --add-comments --keyword=_ text.py |