Add memtest support.
[syslinux-debian/hramrach.git] / com32 / cmenu / Makefile
blob6bb523161b164660cf0bc93bd9a709ed2fdc8c47
1 ## -----------------------------------------------------------------------
2 ##
3 ## Copyright 2001-2009 H. Peter Anvin - All Rights Reserved
4 ## Copyright 2009 Intel Corporation; author: H. Peter Anvin
5 ##
6 ## This program is free software; you can redistribute it and/or modify
7 ## it under the terms of the GNU General Public License as published by
8 ## the Free Software Foundation, Inc., 53 Temple Place Ste 330,
9 ## Boston MA 02111-1307, USA; either version 2 of the License, or
10 ## (at your option) any later version; incorporated herein by reference.
12 ## -----------------------------------------------------------------------
15 ## Makefile for the complex menu system
18 NOGPL := 1
20 LIBS = libmenu/libmenu.c32 \
21 $(objdir)/com32/libutil/libutil.c32 \
22 $(objdir)/com32/lib/libcom32.c32
24 C_LIBS = libmenu/libmenu.c32
26 VPATH = $(SRC)
27 include $(MAKEDIR)/elf.mk
29 CFLAGS += -I$(SRC)/libmenu
31 LIBMENU = libmenu/syslnx.o libmenu/com32io.o libmenu/tui.o \
32 libmenu/menu.o libmenu/passwords.o libmenu/des.o libmenu/help.o \
33 $(objdir)/com32/libutil/libutil.c32 $(objdir)/com32/lib/libcom32.c32
35 CMENUS = $(patsubst %.c,%.c32,$(wildcard $(SRC)/*.c))
36 IMENUS = $(patsubst %.menu,%.c32,$(wildcard $(SRC)/*.menu))
38 MENUS = $(LIBS) $(subst $(SRC)/,,$(CMENUS) $(IMENUS))
40 .SUFFIXES: .S .c .o .elf .c32 .menu
42 .PRECIOUS: %.c
43 %.c: %.menu adv_menu.tpl
44 $(PYTHON) $(SRC)/menugen.py --input=$< --output=$@ --template=$(SRC)/adv_menu.tpl
46 all: makeoutputdirs menus
48 makeoutputdirs:
49 @mkdir -p $(OBJ)/libmenu
51 libmenu/libmenu.elf: $(LIBMENU)
52 $(LD) -shared $(LDFLAGS) -soname $(patsubst %.elf,%.c32,$(@F)) \
53 -o $@ $^
55 tidy dist:
56 rm -f *.o *.lo *.lst *.elf */*.o */*.elf .*.d */.*.d
58 libclean:
59 rm -f libmenu/*.c32
61 clean: tidy menuclean
62 rm -f *.lss *.com
64 menuclean:
65 rm -f $(patsubst %.menu,%.c,$(wildcard *.menu))
67 spotless: clean libclean menuclean
68 rm -f *~ \#* *.c32
70 menus: $(MENUS)
72 install: # Don't install samples
74 -include .*.d */.*.d