Skip to content

Commit 1422dff

Browse files
committed
fixup makefile, add Id lines
git-svn-id: http://code.sixapart.com/svn/memcached/trunk@13 b0b603af-a30f-0410-a34e-baf09ae79d0b
1 parent c8a0b3d commit 1422dff

File tree

5 files changed

+11
-3
lines changed

5 files changed

+11
-3
lines changed

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
all: memcached memcached-debug
1+
all: memcached
22

33
memcached: memcached.c slabs.c items.c memcached.h
4-
gcc-2.95 -I. -L. -static -o memcached memcached.c slabs.c items.c -levent -lJudy
4+
$(CC) -I. -L. -static -o memcached memcached.c slabs.c items.c -levent -lJudy
55

66
memcached-debug: memcached.c slabs.c items.c memcached.h
7-
gcc-2.95 -g -I. -L. -static -o memcached-debug memcached.c slabs.c items.c -levent -lJudy
7+
$(CC) -g -I. -L. -static -o memcached-debug memcached.c slabs.c items.c -levent -lJudy
88

99
clean:
1010
rm memcached memcached-debug

items.c

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* $Id$ */
2+
13
#include <sys/types.h>
24
#include <sys/stat.h>
35
#include <sys/time.h>

memcached.c

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
* Authors:
1212
* Anatoly Vorobey <[email protected]>
1313
* Brad Fitzpatrick <[email protected]>
14+
*
15+
* $Id$
1416
*/
1517

1618
#include <sys/types.h>

memcached.h

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* $Id$ */
2+
13
#define DATA_BUFFER_SIZE 2048
24

35
struct stats {

slabs.c

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
/*
22
* Slabs memory allocation, based on powers-of-2
3+
*
4+
* $Id$
35
*/
46

57
#include <sys/types.h>

0 commit comments

Comments
 (0)