File: makefile.vc

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 (23 lines) | stat: -rwxr-xr-x 665 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
# Makefile for picasm (MS Visual C / Win32)
#

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

CC=cl
CFLAGS=-W3 -O

picasm.exe: $(OBJS)
	$(CC) $(OBJS) -o $@

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