mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-23 15:00:02 +02:00
28 lines
623 B
Makefile
Executable File
28 lines
623 B
Makefile
Executable File
CC = gcc
|
|
CFLAGS += -Wall -DCHIPTESTBOARDD -DVIRTUAL -DSTOP_SERVER #-DVERBOSEI #-DVERBOSE
|
|
LDLIBS += -lm -lstdc++ -pthread
|
|
|
|
PROGS = ctbDetectorServer_virtual
|
|
DESTDIR ?= bin
|
|
INSTMODE = 0777
|
|
|
|
SRC_CLNT = communication_funcs.c slsDetectorServer.c slsDetectorServer_funcs.c slsDetectorFunctionList.c
|
|
OBJS = $(SRC_CLNT:.c=.o)
|
|
|
|
all: clean versioning $(PROGS)
|
|
|
|
boot: $(OBJS)
|
|
|
|
versioning:
|
|
@echo `tput setaf 6; ./updateGitVersion.sh; tput sgr0;`
|
|
|
|
$(PROGS): $(OBJS)
|
|
# echo $(OBJS)
|
|
mkdir -p $(DESTDIR)
|
|
$(CC) -o $@ $^ $(CFLAGS) $(LDLIBS)
|
|
mv $(PROGS) $(DESTDIR)
|
|
|
|
clean:
|
|
rm -rf $(DESTDIR)/$(PROGS) *.o
|
|
|