13 lines
302 B
Plaintext
13 lines
302 B
Plaintext
#
|
|
# A test of the rebuilding of the transformation graph...
|
|
#
|
|
.SUFFIXES :
|
|
.SUFFIXES : .l .c .o .out
|
|
.BEGIN :
|
|
: This should create ucb from ucb.l via ucb.c and ucb.o
|
|
.l.out .l.o .c.out : # delete these transformations
|
|
.o : .EXPORTSAME
|
|
$(CC) $(CFLAGS) $(.IMPSRC) $(LOADLIBES) -o $(.TARGET)
|
|
|
|
ucb ::
|