Skip to content
Snippets Groups Projects

Add install target into Makefile

Closed Alessio Igor Bogani requested to merge (removed):add-install into master
1 file
+ 8
4
Compare changes
  • Side-by-side
  • Inline
+ 8
4
@@ -4,6 +4,9 @@ TARGET_USER = ximc
INC_DIR=src
C_FLAGS=-DLIBXIMC_EXPORTS
INSTALL_LIB_DIR=$(DESTDIR)/usr/lib
INSTALL_INC_DIR=$(DESTDIR)/usr/include
##############################################
# support for shared libray versioning
# #
@@ -43,10 +46,11 @@ $(TARGET_USER): obj lib $(OBJ_FILES)
obj lib:
@mkdir $@
#install:
# su -c "cp lib/$(BASELIBNAME).so $(INSTALL_LIB_DIR);\
# cp src/$(TARGET_USER).h $(INSTALL_INC_DIR)"
install: all
@install -d $(INSTALL_LIB_DIR)
@cp -dR lib/$(BASELIBNAME)* $(INSTALL_LIB_DIR)
@install -d $(INSTALL_INC_DIR)
@cp -dR src/$(TARGET_USER).h $(INSTALL_INC_DIR)
clean:
@rm -fr obj lib core* .nse_depinfo src/*~