File: Makefile.win32

package info (click to toggle)
libmarpa-r2-perl 2.086000~dfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 7,944 kB
  • ctags: 4,367
  • sloc: perl: 38,955; ansic: 19,252; sh: 11,611; makefile: 428
file content (57 lines) | stat: -rw-r--r-- 1,785 bytes parent folder | download | duplicates (12)
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
# Copyright 2014 Jeffrey Kegler
# This file is part of Marpa::R2.  Marpa::R2 is free software: you can
# redistribute it and/or modify it under the terms of the GNU Lesser
# General Public License as published by the Free Software Foundation,
# either version 3 of the License, or (at your option) any later version.
#
# Marpa::R2 is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser
# General Public License along with Marpa::R2.  If not, see
# http://www.gnu.org/licenses/.

# Build static and dynamic libraries of Marpa, using a config.h generated with Marpa::R2::Build_Me

#
# You should execute this Makefile in the libmarpa_dist directory like this:
# nmake -f Makefile.win32
#

CC = cl
CFLAGS = /c /Gy /DWIN32 /MD
LD = link
CP = copy
CPFLAGS = /Y
RM = del
MT = mt
RM_FLAGS = /Q
MARPA_DEF = win32\marpa.def
MARPA_OBJS = marpa.obj marpa_ami.obj marpa_obs.obj marpa_avl.obj
MARPA_DLL = libmarpa.dll

LDFLAGS = /NOLOGO /SUBSYSTEM:CONSOLE /NODEFAULTLIB:"LIBCMTD.LIB" /DLL /DEF:$(MARPA_DEF) /VERSION:%%MARPA_VERSION%%

.c.obj:
        $(CC) $(CFLAGS) /Fo$@ $<

all: $(MARPA_DLL)

$(MARPA_DLL): config.h $(MARPA_OBJS)
        $(LD) $(LDFLAGS) /OUT:$@ $(MARPA_OBJS)
        if exist $(MARPA_DLL).manifest mt -nologo -manifest $(MARPA_DLL).manifest -outputresource:$(MARPA_DLL);2

config.h:
        perl win32\do_config_h.pl --cc="$(CC)" --ccflags="$(CFLAGS)" --obj_ext=".obj"

clean:
        $(RM) $(RM_FLAGS) *.obj
        $(RM) $(RM_FLAGS) *.exp

distclean: clean
        $(RM) $(RM_FLAGS) *.dll
        $(RM) $(RM_FLAGS) *.lib

mrproper: distclean