File: makefile

package info (click to toggle)
firebird4.0 4.0.6.3221.ds6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 41,964 kB
  • sloc: ansic: 393,248; cpp: 356,542; sql: 15,263; yacc: 8,713; fortran: 5,645; sh: 5,184; pascal: 3,328; makefile: 1,342; asm: 271; perl: 194; xml: 55; csh: 15; awk: 1
file content (66 lines) | stat: -rw-r--r-- 1,952 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#
# The contents of this file are subject to the Initial
# Developer's Public License Version 1.0 (the "License");
# you may not use this file except in compliance with the
# License. You may obtain a copy of the License at
# https://www.ibphoenix.com/about/firebird/idpl.
#
# Software distributed under the License is distributed AS IS,
# WITHOUT WARRANTY OF ANY KIND, either express or implied.
# See the License for the specific language governing rights
# and limitations under the License.
#
# The Original Code was created by Paul Reeves for IBPhoenix
#  and the Firebird Open Source RDBMS project.
#
# Copyright (c) 2020 Paul Reeves and all contributors signed below.
#
# All Rights Reserved.
# Contributor(s): ______________________________________.
#

# -----------------------------------------------------------------------
# Firebird Installation Directory
#
# Change this definition to point to your Firebird installation directory
# -----------------------------------------------------------------------
FIREBIRD	= /opt/firebird

INCLUDE_FB	= $(FIREBIRD)/include/firebird
FBCLIENT	= $(FIREBIRD)/lib/libfbclient.so

# Directory to store compiled unit files
UNITBINDIR	= lib

# ---------------------------------------------------------------------
# General Compiler and linker Defines for Free Pascal
# ---------------------------------------------------------------------
FPC			=	fpc
FPCFLAGS	=	-g -Fucommon -Fu$(INCLUDE_FB) -FU$(UNITBINDIR) -Mdelphi -FE.
RM			=	rm -f

OBJECTS		= $(UNITBINDIR)/*
OUTBIN 		= 01.create 02.update 03.select

# To Do...
# 04.print_table 05.user_metadata.cpp 06.fb_message 07.blob 08.events 09.service 10.backup 11.batch 12.batch_isc 13.null_pk


.PHONY:  clean all

.SUFFIXES: .pas

.pas:
	-mkdir $(UNITBINDIR)
	$(FPC) $(FPCFLAGS) $<

all: $(OUTBIN)

01.create: 01.create.pas
02.update: 02.update.pas
03.select: 03.select.pas

# clean up
clean:
	$(RM) $(OBJECTS) $(OUTBIN) fbtests.fdb
	-rm -d $(UNITBINDIR)