source: git/libthread/Makefile.in @ 54b24c

spielwiese
Last change on this file since 54b24c was 54b24c, checked in by Reimer Behrends <behrends@…>, 5 years ago
Finalizing thread support.
  • Property mode set to 100644
File size: 456 bytes
Line 
1OBJ=thread.o shared.o lintree.o bytebuf.o
2INCLUDES=lintree.h thread.h singthreads.h threadconf.h bytebuf.h
3
4all: systhreads.so
5
6clean:
7        rm -f $(OBJ)
8%.o: %.cc
9        @CXX@ @CXXFLAGS@ @SING_INCLUDES@ @SHOBJ_CFLAGS@ -c $<
10
11shared.o: shared.cc $(INCLUDES)
12
13lintree.o: lintree.cc $(INCLUDES)
14
15thread.o: thread.cc $(INCLUDES)
16
17systhreads.so: $(OBJ)
18        @CXX@ @LDFLAGS@ @SHOBJ_LDFLAGS@ -o systhreads.so $^
19
20install: systhreads.so
21@INSTALLATION@
22.PHONY: all clean install
Note: See TracBrowser for help on using the repository browser.