staden-lg/src/alf/makefile-dec

43 lines
456 B
Plaintext

#
# Makefile for alf - DEC Ultrix (mips) version
#
#
# Programs made by this makefile
#
PROGS = alfsplit
#
# Where the wild things are
#
SRC = .
LIBS =
#
# Sun
#
CC = c89
CFLAGS = -g -std -w0 -I$(SRC)/../ted
#
# Make the programs
#
alfsplit: alfsplit.o
$(CC) -o alfsplit alfsplit.o $(LIBS)
2rs: 2rs.o
$(CC) -o 2rs 2rs.o $(LIBS)
#
# Special dependencies
#
all: $(PROGS)
clean:
/bin/rm -f $(PROGS) *.o *~
%.o : $(SRC)/%.c
$(CC) $(CFLAGS) -c $<