/usr/share/dx/samples/callmodule/makefile is in dxsamples 4.2.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | BASE = /usr/local/dx
include $(BASE)/lib_$(ARCH)/arch.mak
INCLUDES = -I$(BASE)/include
LIBS = -L$(BASE)/lib_$(ARCH) -lDXcallm $(DXEXECLINKLIBS)
all: Simple ThunderStreamlines xapp_supervise renderimage
Simple: Simple.c
$(DXCC) $(INCLUDES) $(DXCFLAGS) -o Simple Simple.c $(LIBS)
ThunderStreamlines: ThunderStreamlines.c
$(DXCC) $(INCLUDES) $(DXCFLAGS) -o ThunderStreamlines ThunderStreamlines.c $(LIBS)
xapp_supervise: xapp_supervise.c
$(DXCC) $(INCLUDES) $(DXCFLAGS) -o xapp_supervise xapp_supervise.c $(LIBS)
renderimage: renderimage.c
$(DXCC) $(INCLUDES) $(DXCFLAGS) -o renderimage renderimage.c $(LIBS)
|