@@ -9,9 +9,9 @@ DESTDIR = | |||||
SED_PREFIX = $(shell echo $(PREFIX) | sed "s/\//\\\\\\\\\//g") | SED_PREFIX = $(shell echo $(PREFIX) | sed "s/\//\\\\\\\\\//g") | ||||
LINK = ln -s | |||||
PYUIC = pyuic4 | |||||
PYRCC = pyrcc4 -py3 | |||||
LINK = ln -s | |||||
PYUIC ?= pyuic4 | |||||
PYRCC ?= pyrcc4 -py3 | |||||
# Detect X11 rules dir | # Detect X11 rules dir | ||||
ifeq "$(wildcard /etc/X11/xinit/xinitrc.d/ )" "" | ifeq "$(wildcard /etc/X11/xinit/xinitrc.d/ )" "" | ||||
@@ -34,7 +34,7 @@ cadence-jackmeter: $(FILES) $(OBJS) | |||||
$(CXX) $(OBJS) $(LINK_FLAGS) -o $@ && $(STRIP) $@ | $(CXX) $(OBJS) $(LINK_FLAGS) -o $@ && $(STRIP) $@ | ||||
cadence-jackmeter.exe: $(FILES) $(OBJS) icon.o | cadence-jackmeter.exe: $(FILES) $(OBJS) icon.o | ||||
$(CXX) $(OBJS) icon.o $(LINK_FLAGS) -static -mwindows -o $@ && $(STRIP) $@ | |||||
$(CXX) $(OBJS) icon.o $(LINK_FLAGS) -limm32 -lole32 -luuid -lwinspool -lws2_32 -mwindows -o $@ && $(STRIP) $@ | |||||
# -------------------------------------------------------------- | # -------------------------------------------------------------- | ||||
@@ -38,7 +38,7 @@ cadence-xycontroller: $(FILES) $(OBJS) | |||||
$(CXX) $(OBJS) $(LINK_FLAGS) -o $@ && $(STRIP) $@ | $(CXX) $(OBJS) $(LINK_FLAGS) -o $@ && $(STRIP) $@ | ||||
cadence-xycontroller.exe: $(FILES) $(OBJS) icon.o | cadence-xycontroller.exe: $(FILES) $(OBJS) icon.o | ||||
$(CXX) $(OBJS) icon.o -static -mwindows $(LINK_FLAGS) -o $@ && $(STRIP) $@ | |||||
$(CXX) $(OBJS) icon.o $(LINK_FLAGS) -limm32 -lole32 -luuid -lwinspool -lws2_32 -mwindows -o $@ && $(STRIP) $@ | |||||
# -------------------------------------------------------------- | # -------------------------------------------------------------- | ||||
@@ -2,7 +2,7 @@ | |||||
# -*- coding: utf-8 -*- | # -*- coding: utf-8 -*- | ||||
# Common/Shared code related to Canvas and JACK | # Common/Shared code related to Canvas and JACK | ||||
# Copyright (C) 2010-2012 Filipe Coelho <falktx@falktx.com> | |||||
# Copyright (C) 2010-2013 Filipe Coelho <falktx@falktx.com> | |||||
# | # | ||||
# This program is free software; you can redistribute it and/or modify | # This program is free software; you can redistribute it and/or modify | ||||
# it under the terms of the GNU General Public License as published by | # it under the terms of the GNU General Public License as published by | ||||
@@ -26,7 +26,9 @@ from PyQt4.QtGui import QCursor, QFontMetrics, QImage, QMainWindow, QMenu, QPain | |||||
# Imports (Custom Stuff) | # Imports (Custom Stuff) | ||||
import patchcanvas | import patchcanvas | ||||
import jacksettings, logs, render | |||||
import jacksettings | |||||
import logs | |||||
import render | |||||
from shared import * | from shared import * | ||||
from jacklib_helpers import * | from jacklib_helpers import * | ||||