mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-03 14:24:15 +01:00
15 lines
272 B
Makefile
15 lines
272 B
Makefile
|
CXXFLAGS = -mwindows -mno-cygwin -O2 -Wall
|
||
|
OBJS = launcher.o launcher-rc.o
|
||
|
|
||
|
processing.exe: $(OBJS)
|
||
|
$(LINK.cc) $(CXXFLAGS) -o $@ $(OBJS)
|
||
|
cp processing.exe ../work/
|
||
|
|
||
|
$(OBJS): Makefile
|
||
|
|
||
|
launcher-rc.o: launcher.rc
|
||
|
windres -i $< -o $@
|
||
|
|
||
|
clean:
|
||
|
$(RM) $(OBJS) processing.exe
|