| OLD | NEW |
| 1 # WATCH OUT! This makefile is a work in progress. It is probably missing | 1 # WATCH OUT! This makefile is a work in progress. It is probably missing |
| 2 # tons of important things. DO NOT RELY ON IT TO BUILD A GOOD LIBEVENT. | 2 # tons of important things. DO NOT RELY ON IT TO BUILD A GOOD LIBEVENT. |
| 3 | 3 |
| 4 # Needed for correctness | 4 # Needed for correctness |
| 5 CFLAGS=/Iinclude /Icompat /IWIN32-Code /DWIN32 /DHAVE_CONFIG_H /I. | 5 CFLAGS=/Iinclude /Icompat /IWIN32-Code /DWIN32 /DHAVE_CONFIG_H /I. |
| 6 | 6 |
| 7 # For optimization and warnings | 7 # For optimization and warnings |
| 8 CFLAGS=$(CFLAGS) /Ox /W3 /wd4996 /nologo | 8 CFLAGS=$(CFLAGS) /Ox /W3 /wd4996 /nologo |
| 9 | 9 |
| 10 # XXXX have a debug mode | 10 # XXXX have a debug mode |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 | 39 |
| 40 clean: | 40 clean: |
| 41 del $(ALL_OBJS) | 41 del $(ALL_OBJS) |
| 42 del $(STATIC_LIBS) | 42 del $(STATIC_LIBS) |
| 43 cd test | 43 cd test |
| 44 $(MAKE) /F Makefile.nmake clean | 44 $(MAKE) /F Makefile.nmake clean |
| 45 | 45 |
| 46 tests: | 46 tests: |
| 47 cd test | 47 cd test |
| 48 $(MAKE) /F Makefile.nmake | 48 $(MAKE) /F Makefile.nmake |
| OLD | NEW |