diff options
| author | Richard M. Stallman | 1995-06-14 14:27:43 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-06-14 14:27:43 +0000 |
| commit | 366ad7b01ff2a2106aea6b0b89ff63c194595764 (patch) | |
| tree | f781f2e3c024c5f1827ea94ce355e8093b6a9450 /nt/makefile.nt | |
| parent | 3999f9611cdac15ee048f45dc7bdacf81de36126 (diff) | |
| download | emacs-366ad7b01ff2a2106aea6b0b89ff63c194595764.tar.gz emacs-366ad7b01ff2a2106aea6b0b89ff63c194595764.zip | |
(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 | |||
| 26 | addpm: $(BLD) $(BLD)\addpm.exe | 26 | addpm: $(BLD) $(BLD)\addpm.exe |
| 27 | $(BLD)\addpm.exe: $(BLD)\addpm.obj | 27 | $(BLD)\addpm.exe: $(BLD)\addpm.obj |
| 28 | $(BLD)\addpm.obj: addpm.c | 28 | $(BLD)\addpm.obj: addpm.c |
| 29 | $(CC) -nologo -out:$@ addpm.c \ | 29 | $(CC) $(CFLAGS) -nologo -out:$@ addpm.c \ |
| 30 | -link -out:$(BLD)\addpm.exe \ | 30 | -link -out:$(BLD)\addpm.exe \ |
| 31 | -subsystem:windows -entry:WinMainCRTStartup \ | 31 | -subsystem:windows -entry:WinMainCRTStartup \ |
| 32 | $(SYS_LDFLAGS) $(BASE_LIBS) user32.lib | 32 | $(SYS_LDFLAGS) $(BASE_LIBS) user32.lib |