From 85997a651df64e6be32ffed1176f4a022e8346cc Mon Sep 17 00:00:00 2001 From: Gwenhael Le Moine Date: Fri, 22 Nov 2024 19:18:22 +0100 Subject: [PATCH] move man and desktop sources to src/ --- Makefile | 8 ++++---- {dist => src}/x50ng.desktop.in | 0 {dist => src}/x50ng.scd | 0 3 files changed, 4 insertions(+), 4 deletions(-) rename {dist => src}/x50ng.desktop.in (100%) rename {dist => src}/x50ng.scd (100%) 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