Files correlati : Commento : Spostamento in libraries delle librerie esterne di Campo per una maggiore pulizia e organizzazione git-svn-id: svn://10.65.10.50/branches/R_10_00@24150 c028cbd2-c16b-5b4b-a496-9718f37d4682
42 lines
1.2 KiB
Plaintext
42 lines
1.2 KiB
Plaintext
#************************************************************************
|
|
# Makefile for LAYOUT under VMS
|
|
# by Stefan Hammes
|
|
# (incomplete) update history:
|
|
# 14.05.95
|
|
#************************************************************************
|
|
|
|
#************************************************************************
|
|
# Definition section
|
|
# (cave: definitions and includes must begin with ',')
|
|
#************************************************************************
|
|
|
|
APPOPTS =
|
|
APPDEFS =
|
|
APPINCS =
|
|
|
|
#************************************************************************
|
|
# Module section
|
|
#************************************************************************
|
|
|
|
# Name of main module
|
|
MAIN = layout
|
|
|
|
# Object modules of the application.
|
|
OBJS = layout.obj
|
|
OBJLIST =layout.obj
|
|
|
|
.include [--.src]makevms.env
|
|
|
|
# main dependency
|
|
$(MAIN).exe : $(OBJS)
|
|
$(LINK) $(LINKFLAGS) /exec=$(MAIN).exe $(OBJLIST),$(WXLIB)/lib,$(OPTSFILE)/option
|
|
- purge *.exe
|
|
|
|
#************************************************************************
|
|
# Header file depedencies following
|
|
#************************************************************************
|
|
|
|
layout.obj : layout.cc layout.h
|
|
|
|
|