File: makepc.386

package info (click to toggle)
libhdf4 4.1r3-6
  • links: PTS
  • area: main
  • in suites: potato
  • size: 24,092 kB
  • ctags: 26,163
  • sloc: ansic: 204,415; fortran: 29,237; sh: 7,807; makefile: 7,417; cpp: 2,186; pascal: 1,498; asm: 1,027; yacc: 680; lex: 202; sed: 153
file content (119 lines) | stat: -rw-r--r-- 3,319 bytes parent folder | download | duplicates (5)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# ****************************************************************************
# * NCSA HDF                                                                 *
# * Software Development Group                                               *
# * National Center for Supercomputing Applications                          *
# * University of Illinois at Urbana-Champaign                               *
# * 605 E. Springfield, Champaign IL 61820                                   *
# *                                                                          *
# * For conditions of distribution and use, see the accompanying             *
# * hdf/COPYING file.                                                        *
# *                                                                          *
# ***************************************************************************
#
# $Id: makepc.386,v 1.1 1994/10/06 20:06:14 koziol Exp $
#
#
UTILS = hdf24to8.exe hdfcomp.exe hdfls.exe hdfpack.exe hdftopal.exe &
    hdftor8.exe paltohdf.exe r8tohdf.exe ristosds.exe vcompat.exe vmake.exe &
    vshow.exe hdf8to24.exe hdf2jpeg.exe jpeg2hdf.exe

HEOBJ = he_main.obj he_cntrl.obj he_disp.obj he_file.obj
HELNK = he_main, he_cntrl, he_disp, he_file

#
# These values will typically be over ridden by values specified in
#   top level HDF
#

# ==> Uncomment the line with your system type on it.
#MACHINE = SUN
#MACHINE = UNICOS
#MACHINE = IRIS4
#MACHINE = APOLLO
#MACHINE = IBM6000
#MACHINE = CONVEX
#MACHINE = VMS
#MACHINE = MIPSEL
#MACHINE = MAC
MACHINE = PC386
#MACHINE = HP9000

RM=del
RMFLAGS=

HDFLIB = ..\lib
HDFINC = ..\include
HDFBIN = ..\bin

IFLAGS=   /i=$(HDFINC) /I.
LIBS= $(HDFLIB)\df.lib

CC=wcc386
CFLAGS=  /d$(MACHINE) /ms /w4 /Oneatx /s $(IFLAGS) /zc /ze

LN=wlink
#LNFLAGS=/COD /ST:6118

.c.obj:
    $(CC) $[@ $(CFLAGS)

all: hdfed.exe utils
    mkdir $(HDFBIN)
    cp *.exe $(HDFBIN)

nofortran: all

hdfed.exe: he.h he_proto.h $(HEOBJ)
    $(LN) $(LNFLAGS) NAME hdfed FILE $(HELNK) LIBRARY $(LIBS)

hdf24to8.exe : hdf24to8.obj
    $(LN) $(LNFLAGS) NAME $^@ FILE $[@ LIBRARY $(LIBS)

hdfcomp.exe : hdfcomp.obj
    $(LN) $(LNFLAGS) NAME $^@ FILE $[@ LIBRARY $(LIBS)

hdfls.exe : hdfls.obj
    $(LN) $(LNFLAGS) NAME $^@ FILE $[@ LIBRARY $(LIBS)

hdfpack.exe : hdfpack.obj
    $(LN) $(LNFLAGS) NAME $^@ FILE $[@ LIBRARY $(LIBS)

hdftopal.exe : hdftopal.obj
    $(LN) $(LNFLAGS) NAME $^@ FILE $[@ LIBRARY $(LIBS)

hdftor8.exe : hdftor8.obj
    $(LN) $(LNFLAGS) NAME $^@ FILE $[@ LIBRARY $(LIBS)

paltohdf.exe : paltohdf.obj
    $(LN) $(LNFLAGS) NAME $^@ FILE $[@ LIBRARY $(LIBS)

r8tohdf.exe : r8tohdf.obj
    $(LN) $(LNFLAGS) NAME $^@ FILE $[@ LIBRARY $(LIBS)

hdf8to24.exe : hdf8to24.obj
    $(LN) $(LNFLAGS) NAME $^@ FILE $[@ LIBRARY $(LIBS)

hdf2jpeg.exe : hdf2jpeg.obj
    $(LN) $(LNFLAGS) NAME $^@ FILE $[@ LIBRARY $(LIBS)

jpeg2hdf.exe : jpeg2hdf.obj
    $(LN) $(LNFLAGS) NAME $^@ FILE $[@ LIBRARY $(LIBS)

ristosds.exe : ristosds.obj
    $(LN) $(LNFLAGS) NAME $^@ FILE $[@ LIBRARY $(LIBS)

vcompat.exe : vcompat.obj
    $(LN) $(LNFLAGS) NAME $^@ FILE $[@ LIBRARY $(LIBS)

vmake.exe : vmake.obj
    $(LN) $(LNFLAGS) NAME $^@ FILE $[@ LIBRARY $(LIBS)

vshow.exe : vshow.obj
    $(LN) $(LNFLAGS) NAME $^@ FILE $[@ LIBRARY $(LIBS)

utils: $(UTILS)
    %null

clean:
    -$(RM) $(RMFLAGS) *.obj $(UTILS) hdfed.exe