view pwpzax/Makefile @ 89:ea44e1d9eb7c default tip

Cleanups.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 25 May 2014 05:03:14 +0300
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)