staden-lg/src/abi/makefile-dec

35 lines
423 B
Plaintext

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