X-Git-Url: https://code.delx.au/refind/blobdiff_plain/c7fd2c588919ca599aaec9ec9b9d7e6784482b08..e22f7ac1eccb5958dd960e157d0f35606f7db26e:/libeg/Makefile diff --git a/libeg/Makefile b/libeg/Makefile new file mode 100644 index 0000000..73c46db --- /dev/null +++ b/libeg/Makefile @@ -0,0 +1,19 @@ +# +# libeg/Makefile +# Build control file for the libeg library +# + +SRCDIR = . + +VPATH = $(SRCDIR) + +LOCAL_CPPFLAGS = -I$(SRCDIR) -I$(SRCDIR)/../include + +OBJS = screen.o image.o text.o load_bmp.o load_icns.o +TARGET = libeg.a + +all: $(TARGET) + +include $(SRCDIR)/../Make.common + +# EOF