diff options
| author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-11-04 11:58:40 +0100 | 
|---|---|---|
| committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-11-04 11:58:40 +0100 | 
| commit | d05f931ff8dad9080642a06314d938943837ff4c (patch) | |
| tree | 6dc10e19a0ce7e7d74fecca08c2c669e7dd4ad85 /Makefile | |
| download | st-d05f931ff8dad9080642a06314d938943837ff4c.tar.gz st-d05f931ff8dad9080642a06314d938943837ff4c.tar.bz2 st-d05f931ff8dad9080642a06314d938943837ff4c.tar.xz st-d05f931ff8dad9080642a06314d938943837ff4c.tar.zst st-d05f931ff8dad9080642a06314d938943837ff4c.zip | |
First commit
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 54 | 
1 files changed, 54 insertions, 0 deletions
| diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..02958f2 --- /dev/null +++ b/Makefile @@ -0,0 +1,54 @@ +# 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)" + +.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 + +dist: clean +	mkdir -p st-$(VERSION) +	cp -R FAQ LEGACY TODO LICENSE Makefile README config.mk\ +		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 options clean dist install uninstall | 
