mirror of
https://github.com/arduino/Arduino.git
synced 2025-03-13 10:29:35 +01:00
Added by D. Cuartielles, this file allows direct compilation with Dev-C++
This commit is contained in:
parent
5af5eb38ff
commit
601dafd7b6
33
build/windows/launcher/Makefile.win
Normal file
33
build/windows/launcher/Makefile.win
Normal file
@ -0,0 +1,33 @@
|
||||
# Project: launcher
|
||||
# Makefile created by Dev-C++ 4.9.9.2
|
||||
|
||||
CPP = g++.exe
|
||||
CC = gcc.exe
|
||||
WINDRES = windres.exe
|
||||
RES = launcher_private.res
|
||||
OBJ = launcher.o $(RES)
|
||||
LINKOBJ = launcher.o $(RES)
|
||||
LIBS = -L"C:/Development/Dev-Cpp/lib"
|
||||
INCS = -I"C:/Development/Dev-Cpp/include"
|
||||
CXXINCS = -I"C:/Development/Dev-Cpp/lib/gcc/mingw32/3.4.2/include" -I"C:/Development/Dev-Cpp/include/c++/3.4.2/backward" -I"C:/Development/Dev-Cpp/include/c++/3.4.2/mingw32" -I"C:/Development/Dev-Cpp/include/c++/3.4.2" -I"C:/Development/Dev-Cpp/include"
|
||||
BIN = launcher.exe
|
||||
CXXFLAGS = $(CXXINCS)
|
||||
CFLAGS = $(INCS)
|
||||
RM = rm -f
|
||||
|
||||
.PHONY: all all-before all-after clean clean-custom
|
||||
|
||||
all: all-before launcher.exe all-after
|
||||
|
||||
|
||||
clean: clean-custom
|
||||
${RM} $(OBJ) $(BIN)
|
||||
|
||||
$(BIN): $(OBJ)
|
||||
$(CPP) $(LINKOBJ) -o "launcher.exe" $(LIBS)
|
||||
|
||||
launcher.o: launcher.cpp
|
||||
$(CPP) -c launcher.cpp -o launcher.o $(CXXFLAGS)
|
||||
|
||||
launcher_private.res: launcher_private.rc launcher.rc
|
||||
$(WINDRES) -i launcher_private.rc --input-format=rc -o launcher_private.res -O coff
|
BIN
build/windows/launcher/arduino.exe
Normal file
BIN
build/windows/launcher/arduino.exe
Normal file
Binary file not shown.
68
build/windows/launcher/launcher.dev
Normal file
68
build/windows/launcher/launcher.dev
Normal file
@ -0,0 +1,68 @@
|
||||
[Project]
|
||||
FileName=launcher.dev
|
||||
Name=launcher
|
||||
UnitCount=2
|
||||
Type=1
|
||||
Ver=1
|
||||
ObjFiles=
|
||||
Includes=
|
||||
Libs=
|
||||
PrivateResource=launcher_private.rc
|
||||
ResourceIncludes=
|
||||
MakeIncludes=
|
||||
Compiler=
|
||||
CppCompiler=
|
||||
Linker=
|
||||
IsCpp=1
|
||||
Icon=
|
||||
ExeOutput=
|
||||
ObjectOutput=
|
||||
OverrideOutput=0
|
||||
OverrideOutputName=
|
||||
HostApplication=
|
||||
Folders=
|
||||
CommandLine=
|
||||
UseCustomMakefile=0
|
||||
CustomMakefile=
|
||||
IncludeVersionInfo=0
|
||||
SupportXPThemes=0
|
||||
CompilerSet=0
|
||||
CompilerSettings=
|
||||
|
||||
[Unit1]
|
||||
FileName=launcher.rc
|
||||
Folder=launcher
|
||||
Compile=1
|
||||
Link=0
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit2]
|
||||
FileName=launcher.cpp
|
||||
CompileCpp=1
|
||||
Folder=launcher
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[VersionInfo]
|
||||
Major=0
|
||||
Minor=1
|
||||
Release=1
|
||||
Build=1
|
||||
LanguageID=1033
|
||||
CharsetID=1252
|
||||
CompanyName=
|
||||
FileVersion=
|
||||
FileDescription=Developed using the Dev-C++ IDE
|
||||
InternalName=
|
||||
LegalCopyright=
|
||||
LegalTrademarks=
|
||||
OriginalFilename=
|
||||
ProductName=
|
||||
ProductVersion=
|
||||
AutoIncBuildNr=0
|
||||
|
Loading…
x
Reference in New Issue
Block a user