VirtualBox

source: vbox/trunk/src/apps/svnsync-vbox/Makefile@ 62751

Last change on this file since 62751 was 58234, checked in by vboxsync, 9 years ago

svnsync-vbox: fixes for subversion 1.8, some critical, many avoiding now deprecated functions

File size: 1.0 KB
Line 
1#
2# Makefile
3#
4#
5# Copyright (C) 2006-2015 Oracle Corporation
6#
7# This file is part of VirtualBox Open Source Edition (OSE), as
8# available from http://www.virtualbox.org. This file is free software;
9# you can redistribute it and/or modify it under the terms of the GNU
10# General Public License (GPL) as published by the Free Software
11# Foundation, in version 2 as it comes in the "COPYING" file of the
12# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
13# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
14#
15
16CC = gcc
17CFLAGS = -O2 -g -Wall -pedantic -Wno-long-long -Wno-trigraphs \
18 -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations
19DEFS = -DVBOX -D_FILE_OFFSET_BITS=64
20INCS = -I. -I/usr/include/subversion-1 -I/usr/include/apr-1.0
21LIBS = -lsvn_ra-1 -lsvn_ra_local-1 \
22 -lsvn_repos-1 -lsvn_fs-1 -lsvn_delta-1 \
23 -lsvn_subr-1 -lapr-1 -laprutil-1 \
24 -ldb
25
26all: svnsync-vbox
27
28svnsync-vbox: main.c
29 $(CC) $(CFLAGS) $(DEFS) $(INCS) $(LIBS) -o $@ $<
30
31svnsync-vbox: svn_private_config.h
32
33svnsync-vbox: Makefile
34
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette