diff options
author | H. Peter Anvin <hpa@zytor.com> | 2003-08-29 18:57:50 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2003-08-29 18:57:50 +0000 |
commit | 3f62008ec27af23b49c98830e38d917126e00c0c (patch) | |
tree | c690597386f6d6f706b70b8ac3ad624de626495a /Mkfiles | |
parent | 6ca1f9e21cce5264c88a75ecc1dffdd6f779d82d (diff) | |
download | nasm-3f62008ec27af23b49c98830e38d917126e00c0c.tar.gz nasm-3f62008ec27af23b49c98830e38d917126e00c0c.tar.bz2 nasm-3f62008ec27af23b49c98830e38d917126e00c0c.zip |
Handle subdirectories
Diffstat (limited to 'Mkfiles')
-rw-r--r-- | Mkfiles/Makefile.unx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mkfiles/Makefile.unx b/Mkfiles/Makefile.unx index c760ae8..f328991 100644 --- a/Mkfiles/Makefile.unx +++ b/Mkfiles/Makefile.unx @@ -28,7 +28,7 @@ mandir = $(prefix)/man .SUFFIXES: .c .o .h .mac .pl .c.o: - $(CC) -c $(CFLAGS) $< + $(CC) -c $(CFLAGS) -o $*.o $< NASM = nasm.o nasmlib.o float.o insnsa.o assemble.o labels.o \ parser.o outform.o output/outbin.o output/outaout.o \ |