diff options
Diffstat (limited to 'libc/misc/pthread')
-rw-r--r-- | libc/misc/pthread/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libc/misc/pthread/Makefile b/libc/misc/pthread/Makefile index cee80a9ac..e222e1442 100644 --- a/libc/misc/pthread/Makefile +++ b/libc/misc/pthread/Makefile @@ -19,8 +19,6 @@ TOPDIR=../../../ include $(TOPDIR)Rules.mak -CFLAGS += $(PT_INCLUDES) - CSRC=no-tsd.c weaks.c COBJS=$(patsubst %.c,%.o, $(CSRC)) OBJS=$(COBJS) @@ -33,7 +31,7 @@ $(OBJ_LIST): $(OBJS) echo $(patsubst %, misc/pthread/%, $(OBJS)) > $(OBJ_LIST) $(COBJS): %.o : %.c - $(CC) $(CFLAGS) -c $< -o $@ + $(CC) $(CFLAGS) $(PTINC) -c $< -o $@ $(STRIPTOOL) -x -R .note -R .comment $*.o clean: |