File: makefile.sas

package info (click to toggle)
picasm 1.10b-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 272 kB
  • ctags: 396
  • sloc: ansic: 3,809; perl: 168; asm: 150; makefile: 75
file content (20 lines) | stat: -rw-r--r-- 583 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#
# Makefile for picasm (Amiga SAS/C 6.x)
#

OBJS = picasm.o devices.o config.o token.o symtab.o expr.o \
       pic12bit.o pic14bit.o pic16bit.o

picasm: $(OBJS)
	sc link $(OBJS) to $@

#---------------
config.o: config.c picasm.h token.h
devices.o: devices.c picasm.h
expr.o: expr.c picasm.h token.h symtab.h
pic12bit.o: pic12bit.c picasm.h token.h symtab.h
pic14bit.o: pic14bit.c picasm.h token.h symtab.h
pic16bit.o: pic16bit.c picasm.h token.h symtab.h
picasm.o: picasm.c picasm.h token.h symtab.h
symtab.o: symtab.c picasm.h symtab.h
token.o: token.c picasm.h token.h symtab.h