Commit be058841 authored by Mikhail Karpenko's avatar Mikhail Karpenko
Browse files

Add unmodified sources from elphel353 project

parents
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+17 −0
Original line number Original line Diff line number Diff line
html/*
attic/*
/.project
/.cproject
/.pydevproject
/.externalToolBuilders
/.settings
.directory
generated*
sysroots
bitbake-logs
/temp/
*.o
*.cgi
bitbake-logs
.depend
/image

LICENSE

0 → 100644
+674 −0

File added.

Preview size limit exceeded, changes collapsed.

Makefile

0 → 100644
+27 −0
Original line number Original line Diff line number Diff line
# Runs 'make', 'make install', and 'make clean' in specified subdirectories
SUBDIRS := src
INSTALLDIRS = $(SUBDIRS:%=install-%)
CLEANDIRS =   $(SUBDIRS:%=clean-%)

#TARGETDIR=$(DESTDIR)/www/pages

all: $(SUBDIRS)
	@echo "make all top"

$(SUBDIRS):
	$(MAKE) -C $@

install: $(INSTALLDIRS)
	@echo "make install top"

$(INSTALLDIRS): 
	$(MAKE) -C $(@:install-%=%) install

clean: $(CLEANDIRS)
	@echo "make clean top"

$(CLEANDIRS): 
	$(MAKE) -C $(@:clean-%=%) clean

.PHONY: all install clean $(SUBDIRS) $(INSTALLDIRS) $(CLEANDIRS)

README.md

0 → 100644
+1 −0
Original line number Original line Diff line number Diff line
# elphel-apps-astreamer

VERSION

0 → 100644
+1 −0
Original line number Original line Diff line number Diff line
1.0 
Loading