summaryrefslogtreecommitdiff
path: root/runtime/Makefile
blob: 48ea8ea93cb5b515cb4feed1de2f70bfad87532b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Libraries Makefile:  Build all subdirectories automatically

all:: runtime.o

LEVEL = ../..
DIRS  := $(sort $(filter-out Output/, $(filter-out CVS/, $(wildcard */))))

include ${LEVEL}/Makefile.common

# Install target for libraries: Copy into the gcc install directory in chris's
# tree...
#
install::

clean::

runtime.o: ../runtime.c
	$(CC) -c $(CFLAGS) $<