# Makefile for  DXE2  modules

# -Wall -Wwrite-strings -Wpointer-arith -Wconversion -Wstrict-prototypes -Wmissing-prototypes
WARNINGS = -Wall
#    -lgbm -lalleg
LIBS =
CC = gcc
CFLAGS = -s -O2 $(WARNINGS)


# all objects
OB = bmp.o cel.o gif.o lbm.o pbm.o pcx.o pgm.o ppm.o tga.o xbm.o




OBJ = $(OB) $(OB:.o=.dxe)


all: $(OBJ)


%.o : %.c mtds.h
%.dxe : %.o ; dxe2gen -U $^ -o $@

