mirror of
https://github.com/processing/processing4.git
synced 2026-02-14 02:45:36 +01:00
14 lines
244 B
Makefile
14 lines
244 B
Makefile
CXXFLAGS = -mwindows -mno-cygwin -O2 -Wall
|
|
OBJS = launcher.o launcher-rc.o
|
|
|
|
processing.exe: $(OBJS)
|
|
$(LINK.cc) $(CXXFLAGS) -o $@ $(OBJS)
|
|
|
|
$(OBJS): Makefile
|
|
|
|
launcher-rc.o: launcher.rc
|
|
windres -i $< -o $@
|
|
|
|
clean:
|
|
$(RM) $(OBJS) processing.exe
|