summaryrefslogtreecommitdiff
path: root/libc/termios
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-01-25 03:17:00 +0000
committerMike Frysinger <vapier@gentoo.org>2005-01-25 03:17:00 +0000
commit130697527bfd32f3a6a6e4dfcc1e80c0cdfa0b37 (patch)
tree5725aece2271bb7b95dea27faff912df97db74fe /libc/termios
parentdd8d43ce314931a24533715977385d68d1827b4d (diff)
merge parallel build support
Diffstat (limited to 'libc/termios')
-rw-r--r--libc/termios/Makefile10
1 files changed, 4 insertions, 6 deletions
diff --git a/libc/termios/Makefile b/libc/termios/Makefile
index 6ccfa9a7e..4e43039eb 100644
--- a/libc/termios/Makefile
+++ b/libc/termios/Makefile
@@ -34,13 +34,12 @@ CSRC=tcgetattr.c tcgetsid.c tcsetattr.c ttyname.c
COBJS=$(patsubst %.c,%.o, $(CSRC))
OBJS=$(MOBJ) $(COBJS)
+OBJ_LIST=../obj.termios
-all: $(OBJS) $(LIBC)
+all: $(OBJ_LIST)
-$(LIBC): ar-target
-
-ar-target: $(OBJS)
- $(AR) $(ARFLAGS) $(LIBC) $(OBJS)
+$(OBJ_LIST): $(OBJS)
+ echo $(patsubst %, termios/%, $(OBJS)) > $(OBJ_LIST)
$(MOBJ): $(MSRC)
$(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
@@ -52,4 +51,3 @@ $(COBJS): %.o : %.c
clean:
$(RM) *.[oa] *~ core
-