1
0
mirror of https://github.com/cc65/cc65.git synced 2025-02-09 02:30:42 +00:00

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))
ifeq ($(wildcard ../html),../html)
$(INSTALL) -d $(DESTDIR)$(htmldir)
$(INSTALL) -m644 ../html/*.* $(DESTDIR)$(htmldir)
$(INSTALL) -m0644 ../html/*.* $(DESTDIR)$(htmldir)
endif
ifeq ($(wildcard ../info),../info)
$(INSTALL) -d $(DESTDIR)$(infodir)
$(INSTALL) -m644 ../info/*.* $(DESTDIR)$(infodir)
$(INSTALL) -m0644 ../info/*.* $(DESTDIR)$(infodir)
endif
zip:

View File

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