Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core.win32/library/nmake.mak')
-rw-r--r--core/org.eclipse.cdt.core.win32/library/nmake.mak8
1 files changed, 8 insertions, 0 deletions
diff --git a/core/org.eclipse.cdt.core.win32/library/nmake.mak b/core/org.eclipse.cdt.core.win32/library/nmake.mak
new file mode 100644
index 00000000000..a3ce6c74cc8
--- /dev/null
+++ b/core/org.eclipse.cdt.core.win32/library/nmake.mak
@@ -0,0 +1,8 @@
+TARGET = ..\os\win32\x86\winreg.dll
+
+OBJS = winreg.obj
+
+CPPFLAGS = /nologo /I C:\Java\jdk1.5.0_06\include /I C:\Java\jdk1.5.0_06\include\win32 /DUNICODE
+
+$(TARGET): $(OBJS)
+ link /nologo /dll /out:$(TARGET) $(OBJS) advapi32.lib user32.lib

Back to the top