Home > nmake error > nmake error u1034

Nmake Error U1034

Contents

resources Windows Server 2012 resources Programs MSDN subscriptions Overview Benefits Administrators Students Microsoft Imagine Microsoft Student Partners ISV Startups TechRewards Events Community Magazine Forums Blogs Channel 9 Documentation nmake u1034 separator missing APIs and reference Dev centers Samples Retired content We’re sorry. The

Nmake Syntax

content you requested has been removed. You’ll be auto redirected in 1 second. C/C++ Building Reference C/C++ Build nmake makefile example Errors NMAKE Errors U1000 through U4011 NMAKE Errors U1000 through U4011 NMAKE Fatal Error U1034 NMAKE Fatal Error U1034 NMAKE Fatal Error U1034 NMAKE Fatal Error U1000 NMAKE Fatal

Gnu Make For Windows

Error U1001 NMAKE Fatal Error U1007 NMAKE Fatal Error U1023 NMAKE Fatal Error U1033 NMAKE Fatal Error U1034 NMAKE Fatal Error U1035 NMAKE Fatal Error U1036 NMAKE Fatal Error U1045 NMAKE Fatal Error U1050 NMAKE Fatal Error U1051 NMAKE Fatal Error U1052 NMAKE Fatal Error U1055 NMAKE Fatal Error U1056 NMAKE Fatal Error U1059 NMAKE Fatal Error U1064 NMAKE Fatal Error U1065 NMAKE Fatal Error U1070 NMAKE Fatal Error U1071 NMAKE Fatal Error U1073 NMAKE Fatal Error U1076 NMAKE Fatal Error U1077 NMAKE Fatal Error U1078 NMAKE Fatal Error U1083 NMAKE Fatal Error U1086 NMAKE Fatal Error U1087 NMAKE Fatal Error U1088 NMAKE Fatal Error U1095 NMAKE Fatal Error U1097 NMAKE Fatal Error U1099 NMAKE Fatal Error U1100 NMAKE Warning U4001 NMAKE Warning U4004 NMAKE Warning U4006 NMAKE Warning U4007 NMAKE Warning U4010 NMAKE Warning U4011 TOC Collapse the table of content Expand the table of content This documentation is archived and is not being maintained. This documentation is archived and is not being maintained. NMAKE Fatal Error U1034 Visual Studio 2015 Other Versions Visual Studio 2013 Visual Studio 2012 Visual Studio 2010 Visual Studio 2008 Visual Studio 2005 Visual Studio .NET 2003  syntax error : separator missingThe colon (:) that separates targets and dependents is missing. Show: Inherited Protected Print Export (0) Print Export (0) Share IN THIS ARTICLE Is this page helpful? Yes No Additional feedback? 1500 characters remaining Submit S

here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site About Us Learn more about Stack Overflow the company Business Learn more about hiring developers or posting ads with us Stack Overflow Questions Jobs Documentation Tags Users Badges Ask Question x Dismiss Join the Stack Overflow Community Stack Overflow is a community of 6.2 million programmers, just like you, helping each other. Join them; it only takes a minute: Sign up nmake u1034 separator missing up vote 0 down vote favorite i tried to execute make file with nmake in dos-prompt and got the https://msdn.microsoft.com/en-us/library/h40sttyf.aspx following message: makefile.in(145) : fatal error U1034: syntax error : separator missing i took a look into the make file and the line 145 says: ifeq (@INSTALINFO_FOUND@,yes) i have absolutely no clue how to fix this ... any ideas? nmake separator share|improve this question asked Jul 20 '10 at 9:24 user366121 95472757 add a comment| 1 Answer 1 active oldest votes up vote 0 down vote Makefile.in indicates the build system you should use http://stackoverflow.com/questions/3288583/nmake-u1034-separator-missing is the GNU autotools. These will pre-process your files into GNU format makefile(s). You are then expected to use GNU make with these makefiles. nmake is a completely different beast and will not be compatible with these files. I suggest you investigate whether your package is buildable using Microsft tools (hunt out words like nmake or Visual Studio or Windows etc., in its documentation). Your other alternative is to grab a windows port of the Autotools. Cygwin is good, but here be dragons for the unwary. share|improve this answer answered Jan 17 '11 at 19:03 bobbogo 6,9072335 add a comment| Your Answer draft saved draft discarded Sign up or log in Sign up using Google Sign up using Facebook Sign up using Email and Password Post as a guest Name Email Post as a guest Name Email discard By posting your answer, you agree to the privacy policy and terms of service. Not the answer you're looking for? Browse other questions tagged nmake separator or ask your own question. asked 6 years ago viewed 2811 times active 5 years ago Related 8Using nmake with wildcards in the makefile6what is NMAKE?6nmake Makefile to Place object files in a separate directory2nmake inference rules limited to depth of 11nmake syntax error at -e line 1, near “'755' ]”3nmake - illegal character '{' in

create project directory ("..\HelloWorld") 2) create source file ("..\HelloWorld\main.cpp") 3) http://bojan-komazec.blogspot.com/2011/10/how-to-use-nmake-and-makefile.html create makefile ("..\HelloWorld\makefile") 4) set up environment (environment variables) https://www.winehq.org/pipermail/wine-bugs/2013-May/353318.html for nmake. I will use my setenv.bat script from my post "NMAKE and its environment" (run "..\HelloWorld\setenv.bat" with "x86" argument) 5) run nmake main.cpp: #include int main() { std::cout << "Hello, world!" << std::endl; nmake error return 0; } The shortest version of makefile needs to contain at least one description block: target : dependencies commands Target name MUST start at the beginning of the line. Spaces are allowed (but not requred) around the colon that separates target and dependents. Commands nmake error u1034 in description block MUST be preceded with a SPACE character; nmake will otherwise complain with message makefile(.) : fatal error U1034: syntax error : separator missing. makefile: foo: main.cpp cl main.cpp Here's the order of commands in the command prompt window: C:\DEVELOPMENT\RESEARCH\C++\HelloWorld>setenv x86 Setting environment for using Microsoft Visual Studio 2010 x86 tools. C:\DEVELOPMENT\RESEARCH\C++\HelloWorld>where nmake c:\Program Files\Microsoft Visual Studio 10.0\VC\bin\nmake.exe C:\DEVELOPMENT\RESEARCH\C++\HelloWorld>where cl.exe c:\Program Files\Microsoft Visual Studio 10.0\VC\bin\cl.exe C:\DEVELOPMENT\RESEARCH\C++\HelloWorld>where link.exe c:\Program Files\Microsoft Visual Studio 10.0\VC\bin\link.exe C:\DEVELOPMENT\RESEARCH\C++\HelloWorld>nmake Microsoft (R) Program Maintenance Utility Version 10.00.30319.01 Copyright (C) Microsoft Corporation. All rights reserved. cl main.cpp Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 16.00.30319.01 for 80x86 Copyright (C) Microsoft Corporation. All rights reserved. main.cpp c:\Program Files\Microsoft Visual Studio 10.0\VC\include\xlocale(323) : warning C4530: C++ exception handler used, but unwind semantics are not enabled. Specify /EHsc Microsoft (R) Increm

New: SnagIt 8.x writes incomplete HKLM\\System\\CurrentControlSet\\Control\\Print\\Printers entry, causing loader failures for apps that depend on winspool.drv Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] http://bugs.winehq.org/show_bug.cgi?id=31057 Dmitry Utkin changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |loentar at gmail.com --- Comment #6 from Dmitry Utkin 2013-05-01 13:17:46 CDT --- I have same thing with Windows SDK provided NMAKE when nmake is started _under the same architecture_ as WINEARCH. When I start 32-bit nmake.exe under 32-bit wineprefix (and win32 winearch) it cause that error. When I start 64-bit nmake.exe under 64-bit wineprefix (and x64 winearch) it cause that error. But, when I start 32-bit nmake.exe under 64-bit wineprefix (and x64 winearch) it works well. This bug is reproduced even on that simple makefile as such: ---- all: echo ok ---- I have that makefile in the same dir as nmake.exe for clear experiment (without calling any vcvars32.bat). My commands are: ---- cd "~/.wine~x86/drive_c/Program Files/Microsoft Visual Studio 10.0/VC/bin" WINEPREFIX=~/.wine~x86 WINEARCH=win32 wine cmd nmake ---- I can attach any logs or any additional info to help you fix that bug. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes. Previous message: [Bug 33125] Tomb Raider (2013) game freezes Next message: [Bug 33502] New: SnagIt 8.x writes incomplete HKLM\\System\\CurrentControlSet\\Control\\Print\\Printers entry, causing loader failures for apps that depend on winspool.drv Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] More information about the wine-bugs mailing list

 

Related content

nmake error u1065

Nmake Error U p Languages Windows Desktop Development Visual C Question Sign in to vote I am very new to Microsoft relatedl Visual Studio and have just installed Visual Studio I was trying to build an application with makefile I opened the Visual Studio Command Prompt Changed directory to my source code entered nmake f makefile x It came right back to me with Microsoft R Program Maintenance Utility Version Copyright C Microsoft Corporation All rights reserved NMAKE fatal error U invalid option '-' Stop I had checked the path The C Program Files Microsoft Visual Studio VC BIN is

nmake error u1095

Nmake Error U p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site relatedl About Us Learn more about Stack Overflow the company Business Learn more about hiring developers or posting ads with us Stack Overflow Questions Jobs Documentation Tags Users Badges Ask Question x Dismiss Join the Stack Overflow Community Stack Overflow is a community of million programmers just like you helping each other Join them it only takes a minute Sign up expanded command line too long up vote down