st/Makefile

66 lines
1.6 KiB
Makefile
Raw Permalink Normal View History

2020-08-11 10:53:35 +00:00
# st - simple terminal
# See LICENSE file for copyright and license details.
.POSIX:
include config.mk
SRC = st.c x.c
OBJ = $(SRC:.c=.o)
all: options st
options:
@echo st build options:
@echo "CFLAGS = $(STCFLAGS)"
@echo "LDFLAGS = $(STLDFLAGS)"
@echo "CC = $(CC)"
config.h:
2021-03-07 16:22:15 +00:00
sed "s/HOSTNAME/$(shell cat /etc/hostname)/; \
2021-05-08 11:30:29 +00:00
s/FONT/\"$(shell ../getfont.sh freedesktop)\"/" \
2021-03-07 16:22:15 +00:00
config.def.h > config.h
2020-08-11 10:53:35 +00:00
.c.o:
$(CC) $(STCFLAGS) -c $<
st.o: config.h st.h win.h
x.o: arg.h config.h st.h win.h
$(OBJ): config.h config.mk
st: $(OBJ)
$(CC) -o $@ $(OBJ) $(STLDFLAGS)
clean:
rm -f st $(OBJ) st-$(VERSION).tar.gz config.h
2020-08-11 10:53:35 +00:00
dist: clean
mkdir -p st-$(VERSION)
cp -R FAQ LEGACY TODO LICENSE Makefile README config.mk\
config.def.h st.info st.1 arg.h st.h win.h $(SRC)\
st-$(VERSION)
tar -cf - st-$(VERSION) | gzip > st-$(VERSION).tar.gz
rm -rf st-$(VERSION)
install: st
mkdir -p $(DESTDIR)$(PREFIX)/bin
cp -f st $(DESTDIR)$(PREFIX)/bin
2021-08-30 13:07:47 +00:00
cp -f st.desktop $(DESTDIR)/usr/share/applications/
cp -f st.svg $(DESTDIR)/usr/share/icons/
2020-08-11 10:53:35 +00:00
chmod 755 $(DESTDIR)$(PREFIX)/bin/st
mkdir -p $(DESTDIR)$(MANPREFIX)/man1
sed "s/VERSION/$(VERSION)/g" < st.1 > $(DESTDIR)$(MANPREFIX)/man1/st.1
chmod 644 $(DESTDIR)$(MANPREFIX)/man1/st.1
tic -sx st.info
@echo Please see the README file regarding the terminfo entry of st.
uninstall:
rm -f $(DESTDIR)$(PREFIX)/bin/st
rm -f $(DESTDIR)$(MANPREFIX)/man1/st.1
2021-08-12 10:11:56 +00:00
set_default: install
gsettings set org.gnome.desktop.default-applications.terminal exec st
gsettings set org.gnome.desktop.default-applications.terminal exec-arg ''
2020-08-11 10:53:35 +00:00
.PHONY: all options clean dist install uninstall