# Makefile for DJGPP_V2/MODE_13H

CC = gcc
CFLAGS = -s -O3 -Wall
LIBS = -lj
DEL = del
COPY = copy
LIBDIR = c:\gcc\lib

TARGET = target/djv2_13h/palette.o target/djv2_13h/misc.o \
	target/djv2_13h/dosput.o  target/djv2_13h/kb.o   \
	target/djv2_13h/mouse.o   target/djv2_13h/blit.o \
	target/djv2_13h/uclock.o target/djv2_13h/joystick.o

include target/common

%.exe : %.c ; $(CC) $(CFLAGS) $< -o $@ $(LIBS)

include target/clean.dos

clean : partialclean
	del target\djv2_13h\*.o
