summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--console-client/Makefile6
-rw-r--r--sutils/Makefile2
2 files changed, 4 insertions, 4 deletions
diff --git a/console-client/Makefile b/console-client/Makefile
index 4ebdc824..1784d7cf 100644
--- a/console-client/Makefile
+++ b/console-client/Makefile
@@ -96,10 +96,10 @@ $(module-dir)/%: %
'-Wl,-(' $($*-LDLIBS) '-Wl,-)' $^
lex.c: lex.l parser.tab.h
-parser.tab.h: parser.y
+%.tab.h %.c: %.y
if $(YACC) $(YFLAGS) -d $<; then \
- mv y.tab.h $@; \
- rm y.tab.c; \
+ mv y.tab.h $*.tab.h; \
+ mv y.tab.c $*.c; \
fi
XKB_SRCS = xkb/compose.c xkb/kstoucs.c xkb/parser.y xkb/lex.l \
diff --git a/sutils/Makefile b/sutils/Makefile
index e30bfb77..f4e18110 100644
--- a/sutils/Makefile
+++ b/sutils/Makefile
@@ -27,7 +27,7 @@ special-targets = $(scripts)
installationdir = $(sbindir)
SRCS = $(progs:=.c) clookup.c fstab.c update.c $(scripts:=.sh)
-OBJS = $(progs:=.c)
+OBJS = $(progs:=.o)
HURDLIBS = store shouldbeinlibc
include ../Makeconf