- Added some missing newlines at end of files

- Modified Makefiles to produce a shared library
- Added SingletonDll Makefile


git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@581 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
lfittl 2006-03-02 21:19:41 +00:00
parent f13e5f58ef
commit 6152f9386f
9 changed files with 70 additions and 26 deletions

View file

@ -1,14 +1,20 @@
.PHONY: build check install clean-tmp clean
build:
$(MAKE) -C src
.PHONY: build-static build-shared check install clean-tmp clean
build-static:
$(MAKE) -C src build-static
check: build
build-shared:
$(MAKE) -C src build-shared
check: build-static
$(MAKE) -C test
install:
$(MAKE) -C src install
$(MAKE) -C src install-static
$(MAKE) -C include install
install-shared:
$(MAKE) -C src install-shared
clean-tmp:
$(MAKE) -C src clean-tmp