0df346aaf9
When 'make deb' is run create a libhsakmt.deb archive that installs libhsakmt into the appropriate folder on the target where the dymanic linker can find it. Change-Id: I32de7198975f7831e509a67371e78456982b5c42
16 lines
156 B
Makefile
16 lines
156 B
Makefile
.PHONY: all clean lnx64a lnx
|
|
|
|
all: lnx64a
|
|
|
|
deb:
|
|
$(MAKE) -C src deb
|
|
|
|
lnx64a:
|
|
$(MAKE) -C src lnx64a
|
|
|
|
lnx:
|
|
$(MAKE) -C src lnx
|
|
|
|
clean:
|
|
$(MAKE) -C src clean
|