/* * @(#)Imakefile 2.0 96/11/06 * * Imakefile for xtuner * * xtuner - Xforms based Reveal FM Radio card interface * * Copyright (C) 1994-1996 Mike Tinnes * E-mail: tinnes@kitten.ndscs.nodak.edu * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. * */ #if defined (FreeBSDArchitecture) XCOMM CC= gcc EXTRA_DEFINES= -D_HAVE_PARAM_H #if defined (AlphaArchitecture) LOCAL_LIBRARIES= -lforms -lXpm -lX11 -lm -lio #else LOCAL_LIBRARIES= -lforms -lXpm -lX11 -lm #endif #else CFLAGS= -O2 -m486 LOCAL_LIBRARIES= -lforms -lXpm -lX11 -lm #endif /* * C Source files */ SRCS= xtuner.c \ forms.c \ mixer.c \ radio.c \ misc.c \ callbacks.c \ led.c \ /* * Objects */ OBJS= xtuner.o \ forms.o \ mixer.o \ radio.o \ misc.o \ callbacks.o \ led.o \ ComplexProgramTargetNoMan(xtuner)