Merge pull request #27 from nagamalli9999/makefile-uninstall

Added uninstall rule to Makefile
This commit is contained in:
Kevin Branigan 2016-02-11 13:09:29 -05:00
commit 53b7e74c9c
1 changed files with 6 additions and 2 deletions

View File

@ -22,9 +22,8 @@ DYLIBCMD = $(CC) -shared -o $(DYLIBNAME)
## create dynamic (shared) library on Darwin (base OS for MacOSX and IOS)
ifeq (Darwin, $(uname_S))
DYLIBNAME = $(LIBNAME).dylib
endif
## create dyanmic (shared) library on SunOS
ifeq (SunOS, $(uname_S))
else ifeq (SunOS, $(uname_S))
DYLIBCMD = $(CC) -G -o $(DYLIBNAME)
INSTALL = cp -r
endif
@ -56,5 +55,10 @@ install: $(DYLIBNAME) $(STLIBNAME)
$(INSTALL) $(DYLIBNAME) $(INSTALL_LIBRARY_PATH)
$(INSTALL) $(STLIBNAME) $(INSTALL_LIBRARY_PATH)
uninstall:
rm -rf $(INSTALL_LIBRARY_PATH)/$(DYLIBNAME)
rm -rf $(INSTALL_LIBRARY_PATH)/$(STLIBNAME)
rm -rf $(INSTALL_INCLUDE_PATH)/cJSON.h
clean:
rm -rf $(DYLIBNAME) $(STLIBNAME) $(TESTS) *.o