##// END OF EJS Templates
Improved doxygen html output, improved documentation on some VHDL and C files.
Improved doxygen html output, improved documentation on some VHDL and C files.

File last commit:

r67:10679dca7fe8 default
r67:10679dca7fe8 default
Show More
Makefile
76 lines | 1.6 KiB | text/x-makefile | MakefileLexer
alexis
cleaned file tree, added README
r7 SCRIPTSDIR=scripts/
LIBDIR=lib/
BOARDSDIR=boards/
DESIGNSDIR=designs/
Alexis
fixed some files go to TODO
r39 .PHONY:doc
alexis
cleaned file tree, added README
r7
Alexis
aded GRLIB Automated patcher
r1 all: help
help:
@echo
@echo " batch targets:"
@echo
alexis
cleaned file tree, added README
r7 @echo " make Patch-GRLIB : install library into GRLIB at : $(GRLIB)"
Alexis
aded GRLIB Automated patcher
r1 @echo " make dist : create a tar file for using into an other computer"
Alexis
fixed some files go to TODO
r39 @echo " make Patched-dist : create a tar file for with a patched grlib for using"
@echo " into an other computer"
Alexis
aded GRLIB Automated patcher
r1 @echo " make allGPL : add a GPL HEADER in all vhdl Files"
@echo " make init : add a GPL HEADER in all vhdl Files, init all files"
@echo " make doc : make documentation for VHDL IPs"
Alexis
fixed Makefile for Mingw users
r15 @echo " make pdf : make pdf documentation for VHDL IPs"
Alexis
fixed some files go to TODO
r39 @echo " make C-libs : make C drivers for APB devices"
@echo " binary files availiable on VHD_Lib/LPP_DRIVERS/lib ./includes"
Alexis
aded GRLIB Automated patcher
r1 @echo
Alexis
fixed some files go to TODO
r39
Alexis
aded GRLIB Automated patcher
r1 allGPL:
Alexis
Migrating from GPLV2 to V3, and cleand some files. /!\ Unstable /!\
r19 @echo "Scanning VHDL files ..."
sh $(SCRIPTSDIR)/GPL_Patcher.sh -R vhd lib
@echo "Scanning C files ..."
sh $(SCRIPTSDIR)/GPL_Patcher.sh -R c LPP_drivers
@echo "Scanning H files ..."
sh $(SCRIPTSDIR)/GPL_Patcher.sh -R h LPP_drivers
Alexis
aded GRLIB Automated patcher
r1
yannic
Fixed Makefile (C drivers) for mingw users
r34 init: C-libs
alexis
cleaned file tree, added README
r7 sh $(SCRIPTSDIR)/vhdlsynPatcher.sh
sh $(SCRIPTSDIR)/makeDirs.sh lib/lpp
yannic
Fixed Makefile (C drivers) for mingw users
r34
Alexis
Added an automated Devices ID and Vendor ID handler
r36 C-libs:APB_devs
Alexis
Minors changes on C drivers
r30 make -C LPP_drivers
Alexis
aded GRLIB Automated patcher
r1
Alexis
Added an automated Devices ID and Vendor ID handler
r36
APB_devs:
sh $(SCRIPTSDIR)/APB_DEV_UPDATER.sh
Alexis
aded GRLIB Automated patcher
r1 Patch-GRLIB: init doc
alexis
cleaned file tree, added README
r7 sh $(SCRIPTSDIR)/patch.sh $(GRLIB)
Alexis
aded GRLIB Automated patcher
r1
dist: init
alexis
cleaned file tree, added README
r7 tar -cvzf ./../lpp-lib.tgz ./../VHD_Lib/*
Alexis
aded GRLIB Automated patcher
r1
Alexis
Minors changes on C drivers
r30
Alexis
aded GRLIB Automated patcher
r1 Patched-dist: Patch-GRLIB
tar -cvzf ./../lpp-patched-GRLIB.tgz $(GRLIB)/*
doc:
alexis
Improved doxygen html output, improved documentation on some VHDL and C files.
r67 cp doc/ressources/*.jpg doc/html/
cp doc/ressources/doxygen.css doc/html/
Alexis
fixed some files go to TODO
r39 make -C lib/lpp doc
alexis
Improved doxygen html output, improved documentation on some VHDL and C files.
r67 make -C LPP_drivers doc
Alexis
fixed Makefile for Mingw users
r15
Alexis
Minors changes on C drivers
r30
Alexis
Migrating from GPLV2 to V3, and cleand some files. /!\ Unstable /!\
r19 pdf: doc
sh $(SCRIPTSDIR)/doc.sh
Alexis
Minors changes on C drivers
r30