Skip to content

Commit

Permalink
fixed makefile to properly remove third-party object files
Browse files Browse the repository at this point in the history
also added some additional commentary to the readme and cleaned up the
third party object files that got checked in as a result of them not
being cleaned up.
  • Loading branch information
Aaron Botsis committed Nov 13, 2011
1 parent 829ed46 commit 9119dde
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.DS_Store
7 changes: 7 additions & 0 deletions encryption_package/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,13 @@ I plan to further extend this package to include:

No promises on when.

One thing that might be nice within Vertica is to be able to
put ACLs on virtual tables. This would allow an administrator to
embed a key inside a call to AESDecrypt that's contained within a
view without compromising the key itself. You can obviously do
this today, but the key would be exposed with a simple
'select ..from views'.

-------------------------------
BUILDING
-------------------------------
Expand Down
3 changes: 1 addition & 2 deletions encryption_package/src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ SIMULATOR_PATH = $(SDK)/simulator
BUILD_PATH = .
THIRD_PARTY = $(shell pwd)/third-party
THIRD_PARTY_INCLUDE = $(THIRD_PARTY)/include
THIRD_PARTY_BUILD = $(THIRD_PARTY)/build
THIRD_PARTY_OBJS = rijndael.o my_aes.o
DEBUG_DATA_PATH = $(shell pwd)/test-data

Expand Down Expand Up @@ -77,5 +76,5 @@ clean:
rm -f ./*.so
rm -f ./functions/*.o
rm -f vsim*
rm -f third-party/build/*.o
rm -f third-party/src/*.o

Binary file removed encryption_package/src/third-party/src/my_aes.o
Binary file not shown.
Binary file removed encryption_package/src/third-party/src/rijndael.o
Binary file not shown.

0 comments on commit 9119dde

Please sign in to comment.