File: Makefile.asm.am

package info (click to toggle)
dgen 1.23-7
  • links: PTS
  • area: non-free
  • in suites: sarge
  • size: 2,168 kB
  • ctags: 3,086
  • sloc: ansic: 45,404; cpp: 4,405; sh: 1,960; makefile: 116
file content (11 lines) | stat: -rw-r--r-- 166 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
# Tell how to make assembler files
SUFFIXES += .asmu .asm

.asm.o:
	@NASM@ -f @NASM_FMT@ $<

.asmu.o:
	@@CHOP_@ $< > .$<
	@NASM@ -f @NASM_FMT@ -o $@ .$<
	@rm -f .$<