aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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