diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-01-01 18:05:16 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-01-01 18:05:16 -0600 |
commit | 38c56c7c1fe4ecd7e5907cc14c100e4af3a87e20 (patch) | |
tree | 9f86790f81f23d9006fae7a866ef867de7bc11cd /fpga/xilinx/programmer/svfplayer/raspberry_pi/Makefile | |
parent | 26c1236cdc377dcdbbe91e565e692316775e5c54 (diff) | |
download | ulab-38c56c7c1fe4ecd7e5907cc14c100e4af3a87e20.tar.gz ulab-38c56c7c1fe4ecd7e5907cc14c100e4af3a87e20.zip |
Add initial version of SVF player for Beaglebone Black
Diffstat (limited to 'fpga/xilinx/programmer/svfplayer/raspberry_pi/Makefile')
-rw-r--r-- | fpga/xilinx/programmer/svfplayer/raspberry_pi/Makefile | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/fpga/xilinx/programmer/svfplayer/raspberry_pi/Makefile b/fpga/xilinx/programmer/svfplayer/raspberry_pi/Makefile new file mode 100644 index 0000000..176b0a3 --- /dev/null +++ b/fpga/xilinx/programmer/svfplayer/raspberry_pi/Makefile @@ -0,0 +1,47 @@ +# Copyright (C) 2012 Timothy Pearson +# +# Permission to use, copy, modify, and/or distribute this software for any +# purpose with or without fee is hereby granted, provided that the above +# copyright notice and this permission notice appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +AR = ar +RANLIB = ranlib +CC = gcc + +CFLAGS += -Wall -Os -ggdb -MD +#CFLAGS += -Wextra -Wno-unused-parameter -Werror + +help: + @echo "" + @echo "Usage:" + @echo "" + @echo " $(MAKE) xsvf-rpi" + @echo " .... build xsvf-rpi" + @echo "" + @echo " $(MAKE) all" + @echo " .... build everything" + @echo "" + @echo " $(MAKE) install" + @echo " .... install everything in /usr/" + @echo "" + +all: xsvf-rpi + +install: all + install -Dt /usr/bin/ xsvf-rpi + +xsvf-rpi: /usr/lib/libxsvf.a xsvf-rpi.o + +clean: + rm -f xsvf-rpi.o + +-include *.d + |