diff options
Diffstat (limited to 'libc/misc/pthread')
-rw-r--r-- | libc/misc/pthread/Makefile | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/libc/misc/pthread/Makefile b/libc/misc/pthread/Makefile index e222e1442..1230e44fe 100644 --- a/libc/misc/pthread/Makefile +++ b/libc/misc/pthread/Makefile @@ -19,20 +19,21 @@ TOPDIR=../../../ include $(TOPDIR)Rules.mak -CSRC=no-tsd.c weaks.c -COBJS=$(patsubst %.c,%.o, $(CSRC)) -OBJS=$(COBJS) +CFLAGS += $(PTINC) -OBJ_LIST=../../obj.misc.pthread +CSRC := no-tsd.c weaks.c +OBJS := $(patsubst %.c,%.o, $(CSRC)) + +OBJ_LIST := ../../obj.misc.pthread all: $(OBJ_LIST) $(OBJ_LIST): $(OBJS) - echo $(patsubst %, misc/pthread/%, $(OBJS)) > $(OBJ_LIST) + $(STRIPTOOL) -x -R .note -R .comment $^ + echo $(patsubst %, misc/pthread/%, $^) > $@ -$(COBJS): %.o : %.c - $(CC) $(CFLAGS) $(PTINC) -c $< -o $@ - $(STRIPTOOL) -x -R .note -R .comment $*.o +$(OBJS): %.o : %.c + $(CC) $(CFLAGS) -c $< -o $@ clean: - $(RM) *.[oa] *~ core + $(RM) *.o *~ core |