New installation mechanism

This commit is contained in:
ceriel 1991-09-05 10:56:44 +00:00
parent 324b09070d
commit e7a1e1cc9c
4 changed files with 82 additions and 2 deletions

View file

@ -1,4 +1,4 @@
Makefile
proto.make
arg_type.h
dist.c
em_decl.h

View file

@ -0,0 +1,42 @@
# $Header$
#PARAMS do not remove this line!
SRC_DIR = $(SRC_HOME)/util/ceg/EM_parser/as_parser
CEGLIB = $(TARGET_HOME)/lib.bin/ceg
PARLIB = $(CEGLIB)/EM_parser
LIB = $(PARLIB)/as_EM_pars
OFILES = dist.$(SUF) error.$(SUF)
HFILES = $(SRC_DIR)/arg_type.h $(SRC_DIR)/em_decl.h $(SRC_DIR)/em_parser.h
IFILES = -I$(TARGET_HOME)/h -I$(TARGET_HOME)/modules/h
CFLAGS = $(COPTIONS) $(IFILES)
all : $(OFILES)
install: all
-mkdir $(CEGLIB)
-mkdir $(PARLIB)
-mkdir $(LIB)
cp $(OFILES) $(HFILES) $(LIB)
cmp: all
for i in $(OFILES) $(HFILES) ; do cmp $$i $(LIB)/$$i ; done
clean:
rm -f *.$(SUF)
pr:
@pr $(SRC_DIR)/proto.make $(HFILES) $(SRC_DIR)/dist.c $(SRC_DIR)/error.c
opr:
make pr | opr
dist.$(SUF): $(SRC_DIR)/dist.c
$(CC) -c $(CFLAGS) $(SRC_DIR)/dist.c
error.$(SUF): $(SRC_DIR)/error.c
$(CC) -c $(CFLAGS) $(SRC_DIR)/error.c

View file

@ -1,4 +1,4 @@
Makefile
proto.make
arg_type.h
dist.c
em_parser.h

View file

@ -0,0 +1,38 @@
# $Header$
#PARAMS do not remove this line!
CEGLIB = $(TARGET_HOME)/lib.bin/ceg
PARLIB = $(CEGLIB)/EM_parser
LIB = $(PARLIB)/obj_EM_pars
SRC_DIR = $(SRC_HOME)/util/ceg/EM_parser/obj_EM_pars
OFILES = dist.$(SUF)
HFILES = $(SRC_DIR)/arg_type.h $(SRC_DIR)/em_parser.h
IFILES = -I$(TARGET_HOME)/h -I$(TARGET_HOME)/modules/h
CFLAGS = $(COPTIONS) $(IFILES)
all : $(OFILES)
install: all
-mkdir $(CEGLIB)
-mkdir $(PARLIB)
-mkdir $(LIB)
cp $(OFILES) $(HFILES) $(LIB)
cmp: all
for i in $(OFILES) $(HFILES) ; do cmp $$i $(LIB)/$$i ; done
clean:
rm -f *.$(SUF)
pr:
@pr $(SRC_DIR)/proto.make $(HFILES) $(SRC_DIR)/dist.c
opr:
make pr | opr
dist.$(SUF): $(SRC_DIR)/dist.c
$(CC) $(CFLAGS) -c $(SRC_DIR)/dist.c