1
0
Fork 0
forked from Miroirs/x49gp

Compare commits

...

2 commits

Author SHA1 Message Date
Gwenhael Le Moine
a3b530ec17
1.6.0 2024-11-22 19:18:42 +01:00
Gwenhael Le Moine
85997a651d
move man and desktop sources to src/ 2024-11-22 19:18:22 +01:00
3 changed files with 6 additions and 6 deletions

View file

@ -2,8 +2,8 @@ TARGET = x50ng
TARGET_ALLCAPS = X50NG
VERSION_MAJOR = 1
VERSION_MINOR = 5
PATCHLEVEL = 1
VERSION_MINOR = 6
PATCHLEVEL = 0
INSTALL_PREFIX = /usr/local
INSTALL_BINARY_DIR = "$(INSTALL_PREFIX)"/bin
@ -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)/"