Post-review changes

This commit is contained in:
Patrycjusz R. Łogiewa
2016-05-29 16:19:03 +02:00
parent 759f5f5f48
commit ac5bb6707d
3 changed files with 10 additions and 14 deletions

View File

@@ -33,11 +33,11 @@ install:
$(if $(prefix),,$(error variable `prefix' must be set)) $(if $(prefix),,$(error variable `prefix' must be set))
ifeq ($(wildcard ../html),../html) ifeq ($(wildcard ../html),../html)
$(INSTALL) -d $(DESTDIR)$(htmldir) $(INSTALL) -d $(DESTDIR)$(htmldir)
$(INSTALL) -m644 ../html/*.* $(DESTDIR)$(htmldir) $(INSTALL) -m0644 ../html/*.* $(DESTDIR)$(htmldir)
endif endif
ifeq ($(wildcard ../info),../info) ifeq ($(wildcard ../info),../info)
$(INSTALL) -d $(DESTDIR)$(infodir) $(INSTALL) -d $(DESTDIR)$(infodir)
$(INSTALL) -m644 ../info/*.* $(DESTDIR)$(infodir) $(INSTALL) -m0644 ../info/*.* $(DESTDIR)$(infodir)
endif endif
zip: zip:

View File

@@ -78,11 +78,8 @@ all lib: $(TARGETS)
mostlyclean: mostlyclean:
$(call RMDIR,../libwrk) $(call RMDIR,../libwrk)
# Transitional line active. Final line commented out below in order to
# allow some time for transition between the directory structures
clean: clean:
$(call RMDIR,../libwrk ../lib ../targetutil ../target $(addprefix ../,$(DRVTYPES))) $(call RMDIR,../libwrk ../lib ../target)
# $(call RMDIR,../libwrk ../lib ../target)
ifdef CMD_EXE ifdef CMD_EXE
@@ -103,7 +100,6 @@ endef # INSTALL_recipe
install: install:
$(foreach dir,$(OUTPUTDIRS),$(INSTALL_recipe)) $(foreach dir,$(OUTPUTDIRS),$(INSTALL_recipe))
endif # CMD_EXE endif # CMD_EXE
define ZIP_recipe define ZIP_recipe