aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNikita Langer <nikitalanger@icloud.com>2026-04-06 12:04:31 +0200
committerNikita Langer <nikitalanger@icloud.com>2026-04-06 12:04:31 +0200
commit3a0bbcf5f60aab95bb37671bdb7ba0d781dc0f1d (patch)
treee5bbdfb3a333a3c1f1dda4fbe199f6ca37f996eb /Makefile
downloadst-3a0bbcf5f60aab95bb37671bdb7ba0d781dc0f1d.tar.gz
st-3a0bbcf5f60aab95bb37671bdb7ba0d781dc0f1d.tar.bz2
st-3a0bbcf5f60aab95bb37671bdb7ba0d781dc0f1d.zip
hallo
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile58
1 files changed, 58 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100755
index 0000000..f01809d
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,58 @@
+# st - simple terminal
+# See LICENSE file for copyright and license details.
+.POSIX:
+
+include config.mk
+
+SRC = st.c x.c hb.c
+OBJ = $(SRC:.c=.o)
+
+all: st
+
+config.h:
+ cp config.def.h config.h
+
+.c.o:
+ $(CC) $(STCFLAGS) -c $<
+
+st.o: config.h st.h win.h
+x.o: arg.h config.h st.h win.h hb.h
+hb.o: st.h
+
+$(OBJ): config.h config.mk
+
+st: $(OBJ)
+ $(CC) -o $@ $(OBJ) $(STLDFLAGS)
+
+clean:
+ rm -f st $(OBJ) st-$(VERSION).tar.gz config.h
+
+patch:
+ rm -f *.rej *.orig
+
+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
+ 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.
+ mkdir -p $(DESTDIR)$(APPPREFIX)
+ cp -f st.desktop $(DESTDIR)$(APPPREFIX)
+
+uninstall:
+ rm -f $(DESTDIR)$(PREFIX)/bin/st
+ rm -f $(DESTDIR)$(APPPREFIX)/st.desktop
+ rm -f $(DESTDIR)$(MANPREFIX)/man1/st.1
+
+.PHONY: all clean dist install uninstall