diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-06-14 14:27:43 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-06-14 14:27:43 +0000 |
commit | 811228edb0e35f23b838dc60d5fd85083909ca33 (patch) | |
tree | 5eea1e47e8021e328754eeb6c72992466f7beca3 /nt/makefile.nt | |
parent | 8babc0e1648630c30faa9e208bf21ba8225b1e38 (diff) | |
download | emacs-811228edb0e35f23b838dc60d5fd85083909ca33.tar.gz |
(addpm): Use CFLAGS when compiling.
Diffstat (limited to 'nt/makefile.nt')
-rw-r--r-- | nt/makefile.nt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nt/makefile.nt b/nt/makefile.nt index 54bfc8f211e..f3ce9baab48 100644 --- a/nt/makefile.nt +++ b/nt/makefile.nt @@ -26,7 +26,7 @@ ALL = $(BLD)\addpm.exe addpm: $(BLD) $(BLD)\addpm.exe $(BLD)\addpm.exe: $(BLD)\addpm.obj $(BLD)\addpm.obj: addpm.c - $(CC) -nologo -out:$@ addpm.c \ + $(CC) $(CFLAGS) -nologo -out:$@ addpm.c \ -link -out:$(BLD)\addpm.exe \ -subsystem:windows -entry:WinMainCRTStartup \ $(SYS_LDFLAGS) $(BASE_LIBS) user32.lib |