-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmakefile.inc
40 lines (31 loc) · 1.03 KB
/
makefile.inc
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
# $Id$
#
# Common makefiles part (include-file) for sqpack
# Use defines before including this file:
# _OBJ object files suffix begins with point (".o", ".obj", ... )
# _LIB library files suffix begins with point (".a", ".lib", ... )
# _DLL dinamic linking library files suffix begins with point (".dll", ".so", ...)
# LIBPREFIX library filename prefix ("lib", "", ...)
# LIBSUFFIX library filename suffix (compiler ID, three characters, somewhere empty)
# DLLPREFIX dinamic linking library prefix (usually empty)
# DLLSUFFIX dinamic linking library suffix (compiler ID or empty)
# _SRC_DIR sources dir
LIBNAME = sqpack
# Version
VERMAJOR= 1
VERMINOR= 9
VERPATCH= 0
VERH = $(VERMAJOR).$(VERMINOR)
VER = $(VERH).$(VERPATCH)
# Object files (please sort list to easy check by human)
OBJS = sqpack$(_OBJ)
# Header files
HEADERS = cvsdate.h version.h
# Sources directory
_SRC_DIR= ./
# Headers directory
H_DIR = ./
# Binary file(s) to build from sources
PROGRAMS= $(LIBNAME)$(_EXE)
# List of libraries required to build binary file(s)
LIBS =