diff --git a/Makefile b/Makefile index 15a0977..89ebf64 100644 --- a/Makefile +++ b/Makefile @@ -223,11 +223,11 @@ else endif # Installation -dist/$(TARGET).desktop: dist/$(TARGET).desktop.in - perl -p -e "s!TARGET!$(TARGET)!" < dist/$(TARGET).desktop.in >$@ +dist/$(TARGET).desktop: src/$(TARGET).desktop.in + perl -p -e "s!TARGET!$(TARGET)!" < $^ >$@ -dist/$(TARGET).man: dist/$(TARGET).scd - scdoc < dist/$(TARGET).scd >$@ +dist/$(TARGET).man: src/$(TARGET).scd + scdoc < $^ >$@ install: all dist/$(TARGET).desktop dist/$(TARGET).man mkdir -p "$(DESTDIR)$(INSTALL_BINARY_DIR)/" diff --git a/dist/x50ng.desktop.in b/src/x50ng.desktop.in similarity index 100% rename from dist/x50ng.desktop.in rename to src/x50ng.desktop.in diff --git a/dist/x50ng.scd b/src/x50ng.scd similarity index 100% rename from dist/x50ng.scd rename to src/x50ng.scd