blob: c673ee3ea44e3373fc5a1ea456006be4adbf701c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
.PHONY: all format install
select-target:
@echo "You are made of stupid!"
format:
cat README
install:
echo '#!/bin/bash' > /usr/bin/ati_license
echo 'sudo tar xvf /opt/AMD-APP-SDK-v2.4-lnx64/icd-registration.tgz -C /' >> /usr/bin/ati_license
cp -r user /home
configure:
cat CONFIGURE
|