[ft] Fwd: Re: This is the "perfect" Makefile for FreeType library building on an AmigaOne

2018-11-09 Thread Nagy Károly
*** Begin of forwarded message *** Date: 2018.11.09. 19:01:10 From: Nagy Károly Subject: Re: This is the "perfect" Makefile for FreeType library building on an AmigaOne --- Forwarded message follows --- > Attached is a new version, implementing your findings. Before building... At first

Re: [ft] This is the "perfect" Makefile for FreeType library building on an AmigaOne

2018-11-09 Thread Nagy Károly
> Attached is a new version, implementing your findings. Before building... At first look at this new version of Makefile, I saw the following line very suspiciously: gxvalid.ppc.o: gxvalid.c $(CC) -c $(CFLAGS) -Wno-aggregate-return $< -o $@ After building... My sinister thought came

Re: [ft] This is the "perfect" Makefile for FreeType library building on an AmigaOne

2018-11-09 Thread Werner LEMBERG
> Attached is a new version, implementing your findings. Oops, here's the right one, fixing a typo. Werner # # Intro text. # # # Copyright notice. # # # Build instructions. # .PHONY: all all: libfreetype.a CC = gcc AR = ar RANLIB = ranlib DIRFLAGS = \ -Iinclude \ -I../../src \

Re: [ft] This is the "perfect" Makefile for FreeType library building on an AmigaOne

2018-11-09 Thread Werner LEMBERG
> After replacing "FT:" with "../../" in VPATH variable, the Makefile > began to work... Well... It seems that the Amiga port of GNU make can handle device names (containing `:') only in targets but not in VPATH. Too bad. Attached is a new version, implementing your findings. Werner # #