New installation mechanism
This commit is contained in:
parent
12c14c0396
commit
b53634fa73
|
@ -1,6 +1,2 @@
|
||||||
README
|
table_dir
|
||||||
instrmacs.h
|
|
||||||
mach.c
|
|
||||||
mach.h
|
|
||||||
table_link
|
|
||||||
whichone.h
|
whichone.h
|
||||||
|
|
1
mach/m68k2/ncg/table_dir
Normal file
1
mach/m68k2/ncg/table_dir
Normal file
|
@ -0,0 +1 @@
|
||||||
|
TABLE_DIR = $(SRC_HOME)/mach/m68020/ncg
|
|
@ -1,9 +1,2 @@
|
||||||
Makefile
|
table_dir
|
||||||
README
|
|
||||||
mach.c
|
|
||||||
mach.h
|
|
||||||
table
|
|
||||||
whichone.h
|
whichone.h
|
||||||
instrmacs.h
|
|
||||||
tables1.c
|
|
||||||
tables1.h
|
|
||||||
|
|
1
mach/m68k4/ncg/table_dir
Normal file
1
mach/m68k4/ncg/table_dir
Normal file
|
@ -0,0 +1 @@
|
||||||
|
TABLE_DIR = $(SRC_HOME)/mach/m68020/ncg
|
2
mach/moon3/ncg/.distr
Normal file
2
mach/moon3/ncg/.distr
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
table_dir
|
||||||
|
whichone.h
|
1
mach/moon3/ncg/table_dir
Normal file
1
mach/moon3/ncg/table_dir
Normal file
|
@ -0,0 +1 @@
|
||||||
|
TABLE_DIR = $(SRC_HOME)/mach/m68020/ncg
|
|
@ -5,6 +5,9 @@
|
||||||
#MACH_DEFINE do not remove this or the next line!
|
#MACH_DEFINE do not remove this or the next line!
|
||||||
MACH =
|
MACH =
|
||||||
|
|
||||||
|
#TABLE_DEFINE do not remove this or the next line!
|
||||||
|
TABLE_DIR = $(SRC_HOME)/mach/$(MACH)/ncg
|
||||||
|
|
||||||
SRC_DIR = $(SRC_HOME)/mach/$(MACH)/ncg
|
SRC_DIR = $(SRC_HOME)/mach/$(MACH)/ncg
|
||||||
CDIR = $(SRC_HOME)/mach/proto/ncg
|
CDIR = $(SRC_HOME)/mach/proto/ncg
|
||||||
LIBEM = $(TARGET_HOME)/lib.bin/em_data.$(LIBSUF)
|
LIBEM = $(TARGET_HOME)/lib.bin/em_data.$(LIBSUF)
|
||||||
|
@ -17,7 +20,7 @@ TABLEFLAGS=
|
||||||
#cgg options
|
#cgg options
|
||||||
CGGFLAGS=
|
CGGFLAGS=
|
||||||
|
|
||||||
PREFLAGS=-I$(TARGET_HOME)/h -I$(SRC_HOME)/mach -I$(TARGET_HOME)/modules/h -I$(SRC_DIR) -I. -I$(CDIR) -DNDEBUG
|
PREFLAGS=-I$(TARGET_HOME)/h -I$(SRC_HOME)/mach -I$(TARGET_HOME)/modules/h -I$(SRC_DIR) -I$(TABLE_DIR) -I. -I$(CDIR) -DNDEBUG
|
||||||
PFLAGS=
|
PFLAGS=
|
||||||
CFLAGS=$(PREFLAGS) $(PFLAGS) $(COPTIONS)
|
CFLAGS=$(PREFLAGS) $(PFLAGS) $(COPTIONS)
|
||||||
LDFLAGS=$(PFLAGS) $(LDOPTIONS)
|
LDFLAGS=$(PFLAGS) $(LDOPTIONS)
|
||||||
|
@ -75,13 +78,13 @@ var.$(SUF): $(CDIR)/var.c
|
||||||
$(CC) -c $(CFLAGS) $(CDIR)/var.c
|
$(CC) -c $(CFLAGS) $(CDIR)/var.c
|
||||||
|
|
||||||
install: all
|
install: all
|
||||||
cp cg $(TARGET_MOME)/lib.bin/$(MACH)/cg
|
cp cg $(TARGET_HOME)/lib.bin/$(MACH)/cg
|
||||||
|
|
||||||
cmp: all
|
cmp: all
|
||||||
-cmp cg $(TARGET_MOME)/lib.bin/$(MACH)/cg
|
-cmp cg $(TARGET_HOME)/lib.bin/$(MACH)/cg
|
||||||
|
|
||||||
tables.c: $(SRC_HOME)/$(TABLE) $(CGG)
|
tables.c: $(TABLE_DIR)/table $(CGG)
|
||||||
$(CPP) -I$(SRC_DIR) $(TABLEFLAGS) $(SRC_HOME)/$(TABLE) | $(CGG) $(CGGFLAGS)
|
$(CPP) -I$(SRC_DIR) -I$(TABLE_DIR) $(TABLEFLAGS) $(TABLE_DIR)/table | $(CGG) $(CGGFLAGS)
|
||||||
-cmp tables.h tables.H || cp tables.H tables.h
|
-cmp tables.h tables.H || cp tables.H tables.h
|
||||||
|
|
||||||
lint: tables.c
|
lint: tables.c
|
||||||
|
@ -118,8 +121,8 @@ equiv.$(SUF): $(CDIR)/types.h
|
||||||
fillem.$(SUF): $(CDIR)/assert.h $(TARGET_HOME)/h/cgg_cg.h
|
fillem.$(SUF): $(CDIR)/assert.h $(TARGET_HOME)/h/cgg_cg.h
|
||||||
fillem.$(SUF): $(CDIR)/data.h
|
fillem.$(SUF): $(CDIR)/data.h
|
||||||
fillem.$(SUF): $(CDIR)/extern.h
|
fillem.$(SUF): $(CDIR)/extern.h
|
||||||
fillem.$(SUF): $(SRC_DIR)/mach.c
|
fillem.$(SUF): $(TABLE_DIR)/mach.c
|
||||||
fillem.$(SUF): $(SRC_DIR)/mach.h
|
fillem.$(SUF): $(TABLE_DIR)/mach.h
|
||||||
fillem.$(SUF): $(CDIR)/param.h
|
fillem.$(SUF): $(CDIR)/param.h
|
||||||
fillem.$(SUF): $(CDIR)/regvar.h
|
fillem.$(SUF): $(CDIR)/regvar.h
|
||||||
fillem.$(SUF): $(CDIR)/result.h
|
fillem.$(SUF): $(CDIR)/result.h
|
||||||
|
|
Loading…
Reference in a new issue