initial checkin from subversion

This commit is contained in:
Tretter
2017-02-07 20:07:58 +00:00
commit e4f468da4b
84 changed files with 18782 additions and 0 deletions

40
tiah05a/Makefile Normal file
View File

@@ -0,0 +1,40 @@
############################################################################
# #
# T.I.A.H - THIA IS A HEX-EDITOR #
# Copyright (C) 1999 by Joerg "Maddog" Tretter #
# #
############################################################################
PRGFILE = tiah
SRC = tiah.cc
MANFILE = tiah.1.gz
INSTPATH = /usr/local/bin
MANPATH = /usr/man/man1
DOCPATH = /usr/doc/tiah
MAKE = make
CC = c++
LIBS += -lncurses
all:
$(MAKE) $(PRGFILE)
.cc:
@echo compiling $(SRC) .
@$(CC) $(LIBS) $(SRC) -o$(PRGFILE)
install:
@install -s -g users -m 755 -o root $(PRGFILE) $(INSTPATH)
@install -d -g root -o root $(MANPATH)
@install -g root -m 644 -o root $(MANFILE) $(MANPATH)
@install -d -g root -o root $(DOCPATH)
@install -g root -m 644 -o root COPYING $(DOCPATH)
@install -g root -m 644 -o root README.PROGRAMMER $(DOCPATH)
@install -g root -m 644 -o root README.INSTALL $(DOCPATH)
@install -g root -m 644 -o root README.BUG $(DOCPATH)
clean:
@echo removing object $(PRGFILE).
@rm $(PRGFILE)