|
|
1.1 root 1: # A VBCC makefile for Native Features tester
2:
3: NAME = nf_vbcc.tos
4:
5: # for m68000
6: CC = vc -v
7: CFLAGS = -O1 -DTEST
8: LDFLAGS = -g # leave symbols to binaries
9:
10: OBS = nf_vbcc.o nf_asmv.o
11:
12: all: $(NAME)
13:
14: $(NAME): $(OBS)
15: $(CC) $(LDFLAGS) $(OBS) -o $@
16:
17: nf_vbcc.o: natfeats.c
18: $(CC) $(CFLAGS) -c $< -o $@
19:
20: nf_asmv.o: nf_asmv.s
21: $(CC) $(CFLAGS) -c $< -o $@
22:
23: veryclean:
24: $(RM) $(OBS) *~ *.bak
25: $(RM) $(NAME)
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.