From owner-freebsd-questions@FreeBSD.ORG Mon Feb 7 02:02:20 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 86D2B16A4CE for ; Mon, 7 Feb 2005 02:02:20 +0000 (GMT) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6964843D2F for ; Mon, 7 Feb 2005 02:02:17 +0000 (GMT) (envelope-from gert.cuykens@gmail.com) Received: by rproxy.gmail.com with SMTP id r35so738933rna for ; Sun, 06 Feb 2005 18:02:13 -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:mime-version:content-type:content-transfer-encoding; b=SpsMiqQKI9hbfENwW/GNPrs7vgF4AsLBdwDQgs1W+TGFIh5/VMOywZMb+gbv0AoJmClHZ9bkyJSLPJ8ZU3nrldIt/6nOhFUvGA5Rkt/LDTmS/fzm8PcB4Vep/0oZwVnSRtskujpjZr8XcHpI1KyAFEybCteYPAH5rcg0p9VHA8Y= Received: by 10.38.13.63 with SMTP id 63mr111967rnm; Sun, 06 Feb 2005 18:02:13 -0800 (PST) Received: by 10.38.74.23 with HTTP; Sun, 6 Feb 2005 18:02:13 -0800 (PST) Message-ID: Date: Mon, 7 Feb 2005 03:02:13 +0100 From: Gert Cuykens To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: 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:02:20 -0000 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 ?