~vcs-imports/mammoth-replicator/trunk

« back to all changes in this revision

Viewing changes to src/tools/fsync/Makefile

  • Committer: alvherre
  • Date: 2005-12-16 21:24:52 UTC
  • Revision ID: svn-v4:db760fc0-0f08-0410-9d63-cc6633f64896:trunk:1
Initial import of the REL8_0_3 sources from the Pgsql CVS repository.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Makefile
 
3
#
 
4
#
 
5
TARGET = test_fsync
 
6
XFLAGS = 
 
7
CFLAGS = -O
 
8
LIBS = 
 
9
 
 
10
$(TARGET) : test_fsync.o
 
11
        $(CC) -o $(TARGET) $(XFLAGS) $(CFLAGS) test_fsync.o $(LIBS)
 
12
 
 
13
test_fsync.o    : test_fsync.c 
 
14
        $(CC) -c $(XFLAGS) $(CFLAGS) test_fsync.c
 
15
 
 
16
clean:
 
17
        rm -f *.o $(TARGET) log core
 
18
 
 
19
install:
 
20
        make clean
 
21
        make CFLAGS=-O
 
22
        install -s -o bin -g bin $(TARGET) /usr/local/bin