Introduction
Introduction Statistics Contact Development Disclaimer Help
added some tweaks - 9base - revived minimalist port of Plan 9 userland to Unix
git clone git://git.suckless.org/9base
Log
Files
Refs
README
LICENSE
---
commit c5ba8cfeb807114e3cd9fd5ba7c3bc0884e1abad
parent 4e6a3f7520886923dc03eb96764fc0b09c52733e
Author: Anselm R Garbe <[email protected]>
Date: Sun, 2 Aug 2009 10:24:29 +0100
added some tweaks
Diffstat:
M LICENSE | 2 +-
M README | 8 +++-----
M std.mk | 3 ++-
3 files changed, 6 insertions(+), 7 deletions(-)
---
diff --git a/LICENSE b/LICENSE
@@ -2,7 +2,7 @@ The rare bits touched by Anselm R. Garbe are under following LI…
MIT/X Consortium License
-(C)opyright MMV Anselm R. Garbe <garbeam at gmail dot com>
+(C)opyright 2005-2009 Anselm R. Garbe <garbeam at gmail dot com>
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
diff --git a/README b/README
@@ -1,14 +1,14 @@
Abstract
--------
This is a port of various original Plan 9 tools for Unix, based on
-plan9port [1], mk-with-libs.tgz [2], and wmii [3]. See the LICENSE
-file for license details.
+plan9port[1]. See the LICENSE file for license details.
+
Installation
------------
Edit config.mk to match your local setup and execute 'make install'
(if necessary as root). By default, 9base is installed into its own
-hierarchy, /usr/local/9. This is done to avoid conflicts with the
+hierarchy, /usr/local/plan9. This is done to avoid conflicts with the
standard tools of your system.
@@ -20,7 +20,5 @@ stuff and to Russ Cox for his plan9port.
References
----------
[1] http://swtch.com/plan9port/
-[2] http://swtch.com/plan9port/unix/
-[3] http://wmii.de
--Anselm R. Garbe
diff --git a/std.mk b/std.mk
@@ -6,6 +6,7 @@ MANFILES = ${TARG}.1
include ../config.mk
all: ${TARG}
+ @strip ${TARG}
@echo built ${TARG}
install: ${TARG}
@@ -22,7 +23,7 @@ uninstall:
.c.o:
@echo CC $*.c
- @${CC} ${CFLAGS} -I../lib9 -I${PREFIX}/include -I../lib9 $*.c
+ @${CC} ${CFLAGS} -I../lib9 -I../lib9 $*.c
clean:
rm -f ${OFILES} ${TARG}
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.