Initial Makefile for R3.12

This commit is contained in:
Mike Bordua
1994-06-30 00:47:41 +00:00
parent 399fd80dc0
commit 36ff65fc97
4 changed files with 117 additions and 177 deletions
+28
View File
@@ -0,0 +1,28 @@
EPICS = ../../../..
include $(EPICS)/config/CONFIG
T_ARCH = sun4
LDLIBS = -lm -s
USR_CFLAGS = -D_NO_PROTO
#CC = acc -Xs
CC = cc
SRCS = \
closure.c error.c lalr.c lr0.c main.c \
mkpar.c output.c reader.c skeleton.c symtab.c \
verbose.c warshall.c
OBJS = \
$(OBDIR)/closure.o $(OBDIR)/error.o $(OBDIR)/lalr.o \
$(OBDIR)/lr0.o $(OBDIR)/main.o $(OBDIR)/mkpar.o \
$(OBDIR)/output.o $(OBDIR)/reader.o $(OBDIR)/skeleton.o \
$(OBDIR)/symtab.o $(OBDIR)/verbose.o $(OBDIR)/warshall.o
TARGET = $(OBDIR)/antelope
all :: $(TARGET)
include $(EPICS)/config/RULES