frame index in file name, increments instead of file index for real time acquisitions

git-svn-id: file:///afs/psi.ch/project/sls_det_software/svn/slsDetectorSoftware@330 951219d9-93cf-4727-9268-0efd64621fa3
This commit is contained in:
bergamaschi
2012-10-30 15:52:40 +00:00
parent 2f9dea8341
commit 96d08d61d0
14 changed files with 307 additions and 124 deletions

View File

@@ -15,17 +15,21 @@ boot: $(OBJS)
#doc: $(SRC_CLNT)
# doxygen doxy.config
#%.o : %.c %.h
# $(CXX) -Wall -o $@ -c $< $(INCLUDES) $(CFLAGS) $(FLAGS) $(LDLIBS) -fPIC
$(PROGS): $(OBJS)
$(PROGS):
echo $(OBJS)
mkdir -p $(INSTDIR)
$(CC) $(LDFLAGS) $^ $(LDLIBS) $(CFLAGS) -o $@
mkdir -p $(INSTDIR)
$(CC) $(SRC_CLNT) $(LDFLAGS) $(LDLIBS) $(CFLAGS) -o $@
mv $(PROGS) $(INSTDIR)
clean:
rm -rf $(PROGS) *.o $(INSTDIR)/*