the master branch still has the old makefiles I guess, so, look at the master branch if need reference. update sst1 makefiles to store the libs under individual sst1 and sst96 directories. update linux makefiles for XPATH variable usage. rename makefile.linux to Makefile.linux under the tests directories.
69 lines
1.2 KiB
Makefile
69 lines
1.2 KiB
Makefile
# DOS/DJGPP tests makefile for Glide3
|
|
#
|
|
# Copyright (c) 2002 - Borca Daniel
|
|
# Email : dborca@users.sourceforge.net
|
|
# Web : http://www.geocities.com/dborca
|
|
#
|
|
|
|
#
|
|
# Available options:
|
|
#
|
|
# Environment variables:
|
|
# FX_GLIDE_HW build for the given ASIC (sst1, sst96).
|
|
# default = sst1
|
|
# CPU optimize for the given processor.
|
|
# default = pentium
|
|
# DXE=1 use DXE modules.
|
|
# default = no
|
|
#
|
|
# Targets:
|
|
# <file.exe> build a specific file
|
|
#
|
|
|
|
|
|
.PHONY: all
|
|
.SUFFIXES: .c .o .exe
|
|
.SECONDARY: tlib.o
|
|
|
|
FX_GLIDE_HW ?= sst1
|
|
ifeq ($(FX_GLIDE_HW),sst1)
|
|
HWDEF = -DSST1
|
|
else
|
|
ifeq ($(FX_GLIDE_HW),sst96)
|
|
HWDEF = -DSST96
|
|
endif
|
|
endif
|
|
|
|
override FX_HW_BASE = sst1
|
|
TOP = ../../..
|
|
CPU ?= pentium
|
|
|
|
UNLINK = rm -f $(1)
|
|
|
|
CC = gcc
|
|
CFLAGS = -Wall -O2 -ffast-math -mtune=$(CPU)
|
|
CFLAGS += -I$(TOP)/$(FX_HW_BASE)/glide3/src -I$(TOP)/$(FX_HW_BASE)/incsrc -I$(TOP)/$(FX_HW_BASE)/init
|
|
CFLAGS += -I$(TOP)/swlibs/fxmisc
|
|
CFLAGS += -D__DOS__ $(HWDEF)
|
|
CFLAGS += -D__DOS32__
|
|
|
|
LDFLAGS = -s -L$(TOP)/$(FX_HW_BASE)/lib/$(FX_GLIDE_HW)
|
|
|
|
ifdef DXE
|
|
LDLIBS = -lglide3i
|
|
else
|
|
LDLIBS = -lglide3x
|
|
endif
|
|
|
|
.c.o:
|
|
$(CC) -o $@ $(CFLAGS) -c $<
|
|
%.exe: tlib.o %.o
|
|
$(CC) -o $@ $(LDFLAGS) $^ $(LDLIBS)
|
|
|
|
all:
|
|
$(error Must specify <filename.exe> to build)
|
|
|
|
clean:
|
|
-$(call UNLINK,*.o)
|
|
-$(call UNLINK,*.exe)
|