Skip to content

Commit

Permalink
makefile fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Dane Springmeyer committed Apr 19, 2012
1 parent e06035e commit 3577af1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 330 deletions.
10 changes: 7 additions & 3 deletions Makefile
Expand Up @@ -8,9 +8,11 @@ PYUIC = pyuic4

RC_PY_FILE = resources.py

all: $(RC_PY_FILE) imageexport_ui.py text_editor_ui.py
all: quantumnik

install: all
quantumnik: $(RC_PY_FILE) imageexport_ui.py text_editor_ui.py

install: quantumnik
mkdir -p $(INST_DIR)
cp *.py $(INST_DIR)/
cp *.png $(INST_DIR)/
Expand All @@ -27,4 +29,6 @@ imageexport_ui.py: imageexport.ui
$(PYUIC) -o imageexport_ui.py imageexport.ui

text_editor_ui.py: text_editor.ui
$(PYUIC) -o text_editor_ui.py text_editor.ui
$(PYUIC) -o text_editor_ui.py text_editor.ui

.PHONY: install clean

0 comments on commit 3577af1

Please sign in to comment.