# 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 =  a00.o a01.o a02.o a03.o a04.o a05.o a06.o \
      a20.o a21.o a23.o a25.o                                           \
      a30.o a31.o a32.o a33.o a34.o a35.o a36.o a37.o a38.o a39.o \
      a40.o a41.o a42.o a43.o a44.o a45.o a46.o a47.o a48.o a49.o \
      a50.o a51.o a52.o a53.o a54.o a55.o

# all objects plus the dxe modules
OBJ = $(OB) $(OB:.o=.dxe)


all: $(OBJ)


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

