# Samsung HL-R5668W HD Television RS-232 Serial Interface Driver # Copyright (C) 2006 Eric Gumtow # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the # # Free Software Foundation, Inc. # 51 Franklin Street, Fifth Floor # Boston, MA 02110-1301, USA # # ejgumtow@yahoo.com # http://www.ejgumtow.com/ SHELL:=bash TARGET:=Samsung_HL-R5668W_driver TEST_TARGET:=${TARGET}_test default: clean gcc -c ${TARGET}.c strip -d ${TARGET}.o clean: if [ -e ./${TARGET}.o ]; then rm ./${TARGET}.o; fi if [ -x ./${TEST_TARGET} ]; then rm ./${TEST_TARGET}; fi debug: clean gcc -ggdb -c -DDEBUG ${TARGET}.c test: debug gcc ${TARGET}.o ${TEST_TARGET}.c -o ${TEST_TARGET} read -p "Press enter to run the test." ./${TEST_TARGET}