View previous topic :: View next topic |
Author |
Message |
HCM1955 Beginner
Joined: 30 Jul 2003 Posts: 1 Topics: 1 Location: Slver Spring MD
|
Posted: Wed Jul 30, 2003 2:48 pm Post subject: New to group. JCL question |
|
|
Hi
I am new to MVS. I am just learning ispf today. I am on the hook for
testing a C API. So far I have been using OMVS. Under OMVS I use a
makefile that looks something like this:
CC=c++
LINK=c++
DEL=rm -f
COPY=cp
_CXX_CXXSUFIXX=cpp
IDLCC=CC
LIBS=./DMGAPI.x
INCLUDES= -I/home/hm/test/src
DEFINES= -D_OPEN_THREADS -DMVS
CFLAGS= -g $(INCLUDES) $(DEFINES)
#
#
#
all : dmgCabinetEmpty dmgCommon dmgDocSetup
dmgCabinetEmpty : dmgCabinetEmpty.o
$(CC) -o dmgCabinetEmpty dmgCabinetEmpty.o $(LIBS)
dmgCabinetEmpty.o : dmgCabinetEmpty.cpp
$(CC) $(CFLAGS) -c dmgCabinetEmpty.cpp
.
.
.
clean:
rm -f *.o
I need to do the same thing thru a JCL dataset. I believe I need to
use the CBCCL procedure. I will also need a dataset to run the
executable after I have a build.
Does any one have example datasets ?
Thanks,
Bert Murray |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12380 Topics: 75 Location: San Jose
|
|
Back to top |
|
 |
Brian Beginner
Joined: 12 Aug 2003 Posts: 95 Topics: 6
|
Posted: Tue Aug 12, 2003 10:59 am Post subject: |
|
|
You might want to have a look at BPXBATCH commands. |
|
Back to top |
|
 |
|
|