diff options
Diffstat (limited to 'threadproc/os2')
-rw-r--r-- | threadproc/os2/.cvsignore | 2 | ||||
-rw-r--r-- | threadproc/os2/Makefile.in | 43 |
2 files changed, 12 insertions, 33 deletions
diff --git a/threadproc/os2/.cvsignore b/threadproc/os2/.cvsignore index f3c7a7c5d..06e18a7aa 100644 --- a/threadproc/os2/.cvsignore +++ b/threadproc/os2/.cvsignore @@ -1 +1,3 @@ Makefile +*.lo +.libs diff --git a/threadproc/os2/Makefile.in b/threadproc/os2/Makefile.in index fc07cacd4..9a09fad8b 100644 --- a/threadproc/os2/Makefile.in +++ b/threadproc/os2/Makefile.in @@ -1,39 +1,16 @@ -CC=@CC@ -RANLIB=@RANLIB@ -CFLAGS=@CFLAGS@ @OPTIM@ -LIBS=@LIBS@ -LDFLAGS=@LDFLAGS@ $(LIBS) + +TARGETS = \ + proc.lo \ + thread.lo \ + threadpriv.lo \ + signals.lo + +# bring in rules.mk for standard functionality +@INCLUDE_RULES@ + INCDIR=../../include OSDIR=$(INCDIR)/arch/@OSDIR@ DEFOSDIR=$(INCDIR)/arch/@DEFAULT_OSDIR@ INCLUDES=-I$(INCDIR) -I$(OSDIR) -I$(DEFOSDIR) -MKDEP=../../helpers/mkdep.sh - -LIB=threadproc.a - -OBJS=proc.o \ - thread.o \ - threadpriv.o \ - signals.o - -.c.o: - $(CC) $(CFLAGS) -c $(INCLUDES) $< - -all: $(LIB) - -clean: - $(RM) -f *.o *.a *.so - -distclean: clean - -$(RM) -f Makefile - - -$(LIB): $(OBJS) - $(RM) -f $@ - $(AR) cr $@ $(OBJS) - $(RANLIB) $@ - -depend: - $(MKDEP) $(INCLUDES) $(CFLAGS) *.c # DO NOT REMOVE |