diff options
Diffstat (limited to 'libc/termios/Makefile')
-rw-r--r-- | libc/termios/Makefile | 10 |
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 - |