1 | #
|
---|
2 | # Makefile
|
---|
3 | #
|
---|
4 | #
|
---|
5 | # Copyright (C) 2006-2007 Oracle Corporation
|
---|
6 | #
|
---|
7 | # Oracle Corporation confidential
|
---|
8 | # All rights reserved
|
---|
9 | #
|
---|
10 |
|
---|
11 | CC = gcc
|
---|
12 | CFLAGS = -O2 -g -Wall -pedantic -Wno-long-long -Wno-trigraphs \
|
---|
13 | -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations
|
---|
14 | DEFS = -DVBOX -D_FILE_OFFSET_BITS=64
|
---|
15 | INCS = -I. -I/usr/include/subversion-1 -I/usr/include/apr-1.0
|
---|
16 | LIBS = -lsvn_ra-1 -lsvn_ra_neon-1 -lsvn_ra_local-1 \
|
---|
17 | -lsvn_repos-1 -lsvn_fs-1 -lsvn_fs_base-1 -lsvn_fs_fs-1 -lsvn_delta-1 \
|
---|
18 | -lsvn_subr-1 -lneon -lapr-1 -laprutil-1
|
---|
19 |
|
---|
20 | all: svnsync-vbox
|
---|
21 |
|
---|
22 | svnsync-vbox: main.c
|
---|
23 | $(CC) $(CFLAGS) $(DEFS) $(INCS) $(LIBS) -o $@ $<
|
---|
24 |
|
---|
25 | svnsync-vbox: svn_private_config.h
|
---|
26 |
|
---|
27 | svnsync-vbox: Makefile
|
---|
28 |
|
---|