Skip to content

Commit

Permalink
make files should work now :)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ammar Qammaz committed Jan 13, 2013
1 parent bcdafd2 commit 2a9629d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
5 changes: 3 additions & 2 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,16 @@ You can use the ./get-dependencies.sh to get the required packages for compiling

--------------- Compilation ---------------
To compile the project open a terminal and run
./make
make
This will produce the executables ( flashyslideshows and flashyslideshowsgui )
you can issue
./flashyslideshowsgui


--------------- Installation of current version---------------
if you want to install the app , run
./install.sh
./install.sh or
sudo make install
your password is required..
This will add a shortcut on the applications list and the binaries flashyslideshowsgui and flashyslideshows on the system ..

Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ echo "Installation needs super user privileges.."
sudo echo "..."


./make
make

if [ -d "/usr/share/flashyslideshows" ]; then
echo "FlashySlideshows Installation detected , patching it up :)"
Expand Down
7 changes: 7 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@

WRKDIR = `pwd`
MAKE = make
#SHELL="/bin/bash"

INSTALLATIONSCRIPT:="./install.sh"
UNINSTALLATIONSCRIPT:="./uninstall.sh"

all: src_flashyslideshow src_flashyslideshowstarter_flashyslideshowstarter

Expand All @@ -23,6 +25,11 @@ install :
@echo "INSTALLATIONSCRIPT=$(INSTALLATIONSCRIPT)"
$(shell $(INSTALLATIONSCRIPT))

.PHONY: uninstall
uninstall :
@echo "UNINSTALLATIONSCRIPT=$(UNINSTALLATIONSCRIPT)"
$(shell $(UNINSTALLATIONSCRIPT))

clean_src_flashyslideshow:
$(MAKE) -C src clean -f FlashySlideShow.cbp.mak

Expand Down

0 comments on commit 2a9629d

Please sign in to comment.