aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.com>2007-09-04 21:13:21 +0000
committerOlivier Blin <oblin@mandriva.com>2007-09-04 21:13:21 +0000
commit8a600b21df2dba355fa076e59d923c70470d27dc (patch)
treef079c5546f4517bb5647e508711dac13715ee39f /Makefile
parent98fe57cec3f493e3b6c15ffbde4033069375c06a (diff)
downloadtransfugdrake-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--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index a085d70..68ec3a2 100644
--- a/Makefile
+++ b/Makefile
@@ -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