Skip to content

Commit

Permalink
fixup makefile, add Id lines
Browse files Browse the repository at this point in the history
git-svn-id: http://code.sixapart.com/svn/memcached/trunk@13 b0b603af-a30f-0410-a34e-baf09ae79d0b
  • Loading branch information
bradfitz committed Jun 11, 2003
1 parent c8a0b3d commit 1422dff
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
all: memcached memcached-debug
all: memcached

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

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

clean:
rm memcached memcached-debug
2 changes: 2 additions & 0 deletions items.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* $Id$ */

#include <sys/types.h>
#include <sys/stat.h>
#include <sys/time.h>
Expand Down
2 changes: 2 additions & 0 deletions memcached.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
* Authors:
* Anatoly Vorobey <[email protected]>
* Brad Fitzpatrick <[email protected]>
*
* $Id$
*/

#include <sys/types.h>
Expand Down
2 changes: 2 additions & 0 deletions memcached.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* $Id$ */

#define DATA_BUFFER_SIZE 2048

struct stats {
Expand Down
2 changes: 2 additions & 0 deletions slabs.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
/*
* Slabs memory allocation, based on powers-of-2
*
* $Id$
*/

#include <sys/types.h>
Expand Down

0 comments on commit 1422dff

Please sign in to comment.