david.git  about / heads / tags
slow client simulator to bring prefork/threading servers to their knees
blob ced700c1aaf91169b7e14685522888b59a1b3793 193 bytes (raw)
$ git show HEAD:Makefile	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
 
VERSION = 0.1.1
CC = gcc
CFLAGS = -O2 -Wall

all:
	$(CC) $(CFLAGS) -o david david.c

release:
	git archive --format=tar --prefix=david-$(VERSION)/ HEAD | \
	  gzip -9 > david-$(VERSION).tar.gz

git clone https://yhbt.net/david.git