~ubuntu-branches/debian/squeeze/erlang/squeeze

« back to all changes in this revision

Viewing changes to lib/odbc/src/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Erlang Packagers, Sergei Golovan
  • Date: 2006-12-03 17:07:44 UTC
  • mfrom: (2.1.11 feisty)
  • Revision ID: james.westby@ubuntu.com-20061203170744-rghjwupacqlzs6kv
Tags: 1:11.b.2-4
[ Sergei Golovan ]
Fixed erlang-base and erlang-base-hipe prerm scripts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
# ----------------------------------------------------
29
29
include ../vsn.mk
30
30
VSN=$(ODBC_VSN)
31
 
 
 
31
APP_VSN = "odbc-$(VSN)"
32
32
# ----------------------------------------------------
33
33
# Release directory specification
34
34
# ----------------------------------------------------
62
62
TARGET_FILES = $(MODULES:%=$(EBIN)/%.$(EMULATOR))
63
63
 
64
64
# ----------------------------------------------------
 
65
# ODBC FLAGS
 
66
# ----------------------------------------------------
 
67
ODBC_FLAGS = -D'SERVER_SOFTWARE="odbc/$(VSN)"' \
 
68
 
 
69
# ----------------------------------------------------
65
70
# FLAGS
66
71
# ----------------------------------------------------
67
72
ERL_FLAGS +=
68
 
ERL_COMPILE_FLAGS += -I$(INCLUDE)
 
73
ERL_COMPILE_FLAGS += -I$(INCLUDE) \
 
74
                     $(ODBC_FLAGS) \
 
75
                     +'{parse_transform,sys_pre_attributes}' \
 
76
                     +'{attribute,insert,app_vsn,$(APP_VSN)}'
69
77
# ----------------------------------------------------
70
78
# Targets
71
79
# ----------------------------------------------------