aboutsummaryrefslogtreecommitdiff
path: root/Makefile.orig
diff options
context:
space:
mode:
authorNikita Langer <nikitalanger@icloud.com>2026-04-06 12:07:34 +0200
committerNikita Langer <nikitalanger@icloud.com>2026-04-06 12:07:34 +0200
commit91f4c1942c745222d3d673d946da7ae355f5b700 (patch)
treea5251ade6d5f16af9162cc5dfc092d6ec1f1183a /Makefile.orig
parent3a0bbcf5f60aab95bb37671bdb7ba0d781dc0f1d (diff)
downloadst-91f4c1942c745222d3d673d946da7ae355f5b700.tar.gz
st-91f4c1942c745222d3d673d946da7ae355f5b700.tar.bz2
st-91f4c1942c745222d3d673d946da7ae355f5b700.zip
AufgerÀumt
Diffstat (limited to 'Makefile.orig')
-rwxr-xr-xMakefile.orig55
1 files changed, 0 insertions, 55 deletions
diff --git a/Makefile.orig b/Makefile.orig
deleted file mode 100755
index bae7110..0000000
--- a/Makefile.orig
+++ /dev/null
@@ -1,55 +0,0 @@
-# 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.
-
-uninstall:
- rm -f $(DESTDIR)$(PREFIX)/bin/st
- rm -f $(DESTDIR)$(MANPREFIX)/man1/st.1
-
-.PHONY: all clean dist install uninstall