From owner-freebsd-questions@FreeBSD.ORG Mon Feb 7 02:21:54 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 37A1B16A4CE for ; Mon, 7 Feb 2005 02:21:54 +0000 (GMT) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.200]) by mx1.FreeBSD.org (Postfix) with ESMTP id 720EB43D41 for ; Mon, 7 Feb 2005 02:21:52 +0000 (GMT) (envelope-from gert.cuykens@gmail.com) Received: by rproxy.gmail.com with SMTP id f1so676321rne for ; Sun, 06 Feb 2005 18:21:52 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:references; b=btEG+MDAEZyyjU26Oodi5ni2UBW3///7sNTb7jVJLBYiikj/MQF4qe/SOvrVocGbn9cRRP2DKv9rOMuwNXyfFon1LvPG7VO2URNfIP6bS81mSHuLK1mCG+JR2O6XldcXy1Bz9qAFTcc0LwgYXB6TsIy/TpZjwCVVwFeigJynDpc= Received: by 10.38.149.45 with SMTP id w45mr84855rnd; Sun, 06 Feb 2005 18:20:02 -0800 (PST) Received: by 10.38.74.23 with HTTP; Sun, 6 Feb 2005 18:20:02 -0800 (PST) Message-ID: Date: Mon, 7 Feb 2005 03:20:02 +0100 From: Gert Cuykens To: "Donald J. O'Neill" In-Reply-To: <200502062010.45718.donaldj1066@fastmail.fm> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <200502062010.45718.donaldj1066@fastmail.fm> cc: freebsd-questions@freebsd.org Subject: Re: make file X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Gert Cuykens List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Feb 2005 02:21:54 -0000 On Sun, 6 Feb 2005 20:10:45 -0600, Donald J. O'Neill wrote: > On Sunday 06 February 2005 08:02 pm, Gert Cuykens wrote: > > make file > > --------------------------------------------------------------------- > >---------------- CC=cc -Wall -g > > XCFLAGS=`pkg-config --cflags gtk+-2.0` > > XLDFLAGS=`pkg-config --libs gtk+-2.0` > > OBJ=ossxmix.o gtkvu.o gtkjoy.o > > > > ossxmix.o: ossxmix.c > > $(CC) $(CFLAGS) $(XCFLAGS) -c -o ossxmix.o ossxmix.c > > > > gtkvu.o: gtkvu.c > > $(CC) $(CFLAGS) $(XCFLAGS) -c -o gtkvu.o gtkvu.c > > > > gtkjoy.o: gtkjoy.c > > $(CC) $(CFLAGS) $(XCFLAGS) -c -o gtkjoy.o gtkjoy.c > > > > ossxmix: $(OBJ) > > $(CC) $(XLDFLAGS) -o ossxmix $(OBJ) > > > > install: ossxmix > > all: ossxmix > > clean: rm -f x y z ossxmix *.o core ossxmix core.* > > --------------------------------------------------------------------- > >--------------------- > > > > I# make > > "Makefile", line 7: Need an operator > > "Makefile", line 10: Need an operator > > "Makefile", line 13: Need an operator > > "Makefile", line 16: Need an operator > > make: fatal errors encountered -- cannot continue > > I# > > > > What did i do wrong with the make file ? > > _______________________________________________ > > You went in and mucked around with it. Leave it alone. > > What make file are you playing with? What did you do to it? What are you > trying to install? what are you trying to accomplish? > > Don > > -- > Donald J. O'Neill > donaldj1066@fastmail.fm > > I'm not totally useless, > I can be used as a bad example. lol i am trying to make a nice gtk2 gui for the ossxmixer :)