You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
731 B
18 lines
731 B
################################################################################
|
|
#
|
|
# ofgwrite
|
|
#
|
|
################################################################################
|
|
|
|
ofgwrite: $(SOURCE_DIR)/$(NI_OFGWRITE) | $(TARGET_DIR)
|
|
$(REMOVE)/$(NI_OFGWRITE)
|
|
tar -C $(SOURCE_DIR) --exclude-vcs -cp $(NI_OFGWRITE) | tar -C $(BUILD_DIR) -x
|
|
$(CHDIR)/$(NI_OFGWRITE); \
|
|
$(TARGET_CONFIGURE_ENV) \
|
|
$(MAKE)
|
|
$(INSTALL_EXEC) $(BUILD_DIR)/$(NI_OFGWRITE)/ofgwrite_bin $(TARGET_bindir)
|
|
$(INSTALL_EXEC) $(BUILD_DIR)/$(NI_OFGWRITE)/ofgwrite_caller $(TARGET_bindir)
|
|
$(INSTALL_EXEC) $(BUILD_DIR)/$(NI_OFGWRITE)/ofgwrite $(TARGET_bindir)
|
|
$(SED) 's|prefix=.*|prefix=$(prefix)|' $(TARGET_bindir)/ofgwrite
|
|
$(REMOVE)/$(NI_OFGWRITE)
|
|
$(TOUCH)
|
|
|