view pwpzax/Makefile @ 86:71394f177c0f

Bump version.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 19 Mar 2013 07:25:50 +0200
parents 1013256040d5
children
line wrap: on
line source

include ../config.mak

TARGETS=
ifeq ($(XTARGET),sdl)
TARGETS += zaxplay$(BINEXT)
endif
ifeq ($(XTARGET),sdl-win32)
TARGETS += zaxplay$(BINEXT)
endif
ifeq ($(XTARGET),linux)
TARGETS += orig$(BINEXT)
endif

all: $(TARGETS)

include ../Makefile.inc


zaxplay$(BINEXT): zaxplay.o
	$(CC) -o $@ $< $(LDFLAGS)


orig: orig.c
	$(CC) -o $@ $< $(LDFLAGS)