Skip to content

Commit

Permalink
Finally built the source and had the executables automatically get +x.
Browse files Browse the repository at this point in the history
We are done here, gonna get working on the ebuild.
  • Loading branch information
Merbo committed Apr 7, 2012
1 parent 17034be commit 2ca3488
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
Binary file added Executables/powder
Binary file not shown.
Binary file added Executables/powder-64-sse3
Binary file not shown.
13 changes: 7 additions & 6 deletions GENTOOMAKE
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
Making this in gentoo is a little different, as this was made for Gentoo itself.
In order to build all this and send it to your Executables/ directory, you'll need to do the following:
make <packages>
Example: make powder && make powder-64-sse3
THEN, you have to do make final.
Example: make final
"make final" does two things:
In order to build all this and send it to your 'Executables/' directory, you'll need to do the following:
make final
'make final' does many things:
- Makes all possible packages your system can compile
--> That way you can push all executables available.
- Runs 'make clean'
--> By running 'make clean' it will remove the object files that can cause clutter.
- Copies executables from various places in 'build/' to 'Executables'
--> By doing this, end users will have it easy.
- Completely erases all non-directory files in 'build/'
--> This way, your next 'make final' will be nice and clean.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,14 @@ clean:
rm -vf build/obj/elements/*.o

final:
make clean
rm -fv build/p*
make powder
make powder-64-sse3
make clean
cp -fruv build/* Executables/
chmod +x Executables/powder
chmod +x Executables/powder-64-sse3
rm -fv build/p*
rm -frv Executables/obj

Expand Down

0 comments on commit 2ca3488

Please sign in to comment.