aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 806520fbefd47291b8caeac7269b490cbce52996 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
BIN:=silc
CLM:=clm
CLMFLAGS:=-nt -nr\
	-IL Platform\
	-I ABCMachine

.PHONY: all clean

all: $(BIN)

$(BIN): .FORCE
	$(CLM) $(CLMFLAGS) $@ -o $@

clean:
	$(RM) -r 'Clean System Files' $(BIN)

.FORCE: