From: ceriel Date: Thu, 23 Apr 1992 12:55:34 +0000 (+0000) Subject: Fixed proto.make X-Git-Tag: release-5-5~489 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=8c9f885817b0d90309ea9bf5310e07c22f45e37f;p=ack.git Fixed proto.make --- diff --git a/mach/mantra/int/proto.make b/mach/mantra/int/proto.make index 1349ba963..325fbe518 100644 --- a/mach/mantra/int/proto.make +++ b/mach/mantra/int/proto.make @@ -15,8 +15,8 @@ FLTRAP= all: $(INTS) em -em: em.c - $(CC) $(CFLAGS) -o em em.c +em: $(SRC_DIR)/em.c + $(CC) $(CFLAGS) -o em $(SRC_DIR)/em.c tmp.s: $(FILES) cat $(FILES) > tmp.s @@ -51,10 +51,10 @@ em4_t-c-:tmp.s compile con_float.o em4_t--p: tmp.s compile con_float.o ./compile -o em4_t--p -P $(FLTRAP) -Dlword -Dopfreq=0 -Dlast=1 -Dcount=0 -Dtest=1 -Dflow=0 -Dprof=1 tmp.s con_float.o -con_float.o: con_float.c +con_float.o: $(SRC_DIR)/con_float.c case `ack_sys` in m68k2|pmds) \ - acc -I$(SRC_HOME)/mach -mm68k4 -c -L -O con_float.c;; \ - *) acc -c -I$(SRC_HOME)/mach -L -O con_float.c;; \ + acc -I$(SRC_HOME)/mach -mm68k4 -c -L -O $(SRC_DIR)/con_float.c;; \ + *) acc -c -I$(SRC_HOME)/mach -L -O $(SRC_DIR)/con_float.c;; \ esac compile: Makefile