diff options
author | Johann Visagie <wjv@FreeBSD.org> | 2002-02-11 10:49:40 +0000 |
---|---|---|
committer | Johann Visagie <wjv@FreeBSD.org> | 2002-02-11 10:49:40 +0000 |
commit | 14aa8989b2b1ba0affd08466195f413a558006a9 (patch) | |
tree | c2662a28515c8ec6f21ed3735ede754a0844389e /misc/since/files | |
parent | Update jabber module and MSC theme. (diff) |
Add since 0.3, a tool to view the end of a file like tail(1), but save state
between sessions.
Notes
Notes:
svn path=/head/; revision=54546
Diffstat (limited to 'misc/since/files')
-rw-r--r-- | misc/since/files/patch-Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/misc/since/files/patch-Makefile b/misc/since/files/patch-Makefile new file mode 100644 index 000000000000..90a5d57f1be2 --- /dev/null +++ b/misc/since/files/patch-Makefile @@ -0,0 +1,31 @@ +--- Makefile.orig Mon May 7 13:05:30 2001 ++++ Makefile Mon Feb 11 12:37:38 2002 +@@ -16,8 +16,8 @@ + ########################################################################### + # Compiler and Flags ###################################################### + +-CC = gcc +-CFLAGS = -Wall -O2 -fomit-frame-pointer -DVERSION=\"$(VERSION)\" ++#CC = gcc ++CFLAGS += -Wall -fomit-frame-pointer -DVERSION=\"$(VERSION)\" + STRIP = strip + + #CFLAGS += -DTRACE +@@ -43,15 +43,14 @@ + # Install ################################################################# + + install : $(TARGET) +- $(INSTALL) -m 0755 $(TARGET) $(INTARGET) +- $(INSTALL) -m 0644 $(MAN) $(INMAN) ++ $(BSD_INSTALL_PROGRAM) $(TARGET) $(PREFIX)/bin/$(TARGET) ++ $(BSD_INSTALL_MAN) $(MAN) $(PREFIX)/man/man1/$(MAN) + + ########################################################################### + # Build since executable ################################################## + + $(TARGET) : $(OBJ) + $(CC) $(CFLAGS) $(OBJ) -o $(TARGET) +- $(STRIP) $(TARGET) + + ########################################################################### + # Build object files from source ########################################## |