diff options
author | Olivier Blin <oblin@mandriva.com> | 2007-09-04 21:13:21 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2007-09-04 21:13:21 +0000 |
commit | 8a600b21df2dba355fa076e59d923c70470d27dc (patch) | |
tree | f079c5546f4517bb5647e508711dac13715ee39f /Makefile | |
parent | 98fe57cec3f493e3b6c15ffbde4033069375c06a (diff) | |
download | transfugdrake-8a600b21df2dba355fa076e59d923c70470d27dc.tar transfugdrake-8a600b21df2dba355fa076e59d923c70470d27dc.tar.gz transfugdrake-8a600b21df2dba355fa076e59d923c70470d27dc.tar.bz2 transfugdrake-8a600b21df2dba355fa076e59d923c70470d27dc.tar.xz transfugdrake-8a600b21df2dba355fa076e59d923c70470d27dc.zip |
fix typo
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -18,14 +18,14 @@ RPM=$(HOME)/rpm #override CFLAGS += -DPACKAGE=\"$(NAME)\" -DLOCALEDIR=\"$(localedir)\" all: - for d in $(SUBDIRS); do make -C $d $@; done + for d in $(SUBDIRS); do make -C $$d $@; done transfug_oe: transfug_oe.o $(CC) $(CFLAGS) -o transfug_oe transfug_oe.o clean: rm -f core transfug_oe *~ - for d in $(SUBDIRS); do make -C $d $@; done + for d in $(SUBDIRS); do make -C $$d $@; done install_old: transfug_oe $(MAKE) -C po $@ @@ -43,4 +43,4 @@ install: install -d $(SBINDIR) $(ICONSDIR) install -m755 $(NAME) $(SBINDIR) install -m644 $(wildcard data/icons/*.png) $(ICONSDIR) - for d in $(SUBDIRS); do make -C $d $@; done + for d in $(SUBDIRS); do make -C $$d $@; done |