Changeset 775 in code
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r613 r775 1 .POSIX: 2 .SUFFIXES: 3 4 GO = go 5 RM = rm 6 SCDOC = scdoc 7 GOFLAGS = 8 PREFIX = /usr/local 9 BINDIR = bin 10 MANDIR = share/man 1 GO ?= go 2 RM ?= rm 3 SCDOC ?= scdoc 4 GOFLAGS ?= 5 PREFIX ?= /usr/local 6 BINDIR ?= bin 7 MANDIR ?= share/man 11 8 12 9 all: soju sojuctl doc/soju.1 … … 20 17 21 18 clean: 22 $(RM) - rf soju sojuctl doc/soju.119 $(RM) -f soju sojuctl doc/soju.1 23 20 install: 24 21 mkdir -p $(DESTDIR)$(PREFIX)/$(BINDIR) … … 30 27 [ -f $(DESTDIR)/etc/soju/config ] || cp -f config.in $(DESTDIR)/etc/soju/config 31 28 32 .PHONY: soju sojuctl 29 .PHONY: soju sojuctl clean install -
trunk/README.md
r593 r775 21 21 22 22 - Go 23 - BSD or GNU make 23 24 - a C89 compiler (for SQLite) 24 25 - scdoc (optional, for man pages) … … 31 32 For development, you can use `go run ./cmd/soju` as usual. 32 33 33 To link with the system libsqlite3, use `makeGOFLAGS="-tags=libsqlite3"`.34 To link with the system libsqlite3, set `GOFLAGS="-tags=libsqlite3"`. 34 35 35 36 ## Contributing
Note:
See TracChangeset
for help on using the changeset viewer.