File: localmk.in

package info (click to toggle)
dxsamples 4.4.0-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 26,340 kB
  • sloc: ansic: 10,079; sh: 8,445; java: 1,772; makefile: 1,102
file content (19 lines) | stat: -rw-r--r-- 617 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
BASE = @DXINST@
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)