aboutsummaryrefslogtreecommitdiff
path: root/development/obcpl/examples/Makefile
blob: dbac82c9192fa3e2d2f73f6e9a895526bad69f6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Makefile for obcpl/util

BC=obcpl
BFLAGS=-O

all: hello factorial

hello: hello.b
	$(BC) $(BFLAGS) hello.b

factorial: factorial.b
	$(BC) $(BFLAGS) factorial.b

install:

clean:
	rm -f hello factorial *.o