Adding upstream version 4.02+dfsg.
[syslinux-debian/hramrach.git] / com32 / gdbstub / Makefile
blob5513876b4fb64d32e4e48a5faf5c92fe04d454fd
1 ## -----------------------------------------------------------------------
2 ##
3 ## Copyright 2001-2008 H. Peter Anvin - All Rights Reserved
4 ##
5 ## This program is free software; you can redistribute it and/or modify
6 ## it under the terms of the GNU General Public License as published by
7 ## the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
8 ## Boston MA 02110-1301, USA; either version 2 of the License, or
9 ## (at your option) any later version; incorporated herein by reference.
11 ## -----------------------------------------------------------------------
14 ## GDB remote debugging
17 topdir = ../..
18 include ../MCONFIG
20 CFLAGS += -fPIE
22 LIBS = ../libutil/libutil_com.a ../lib/libcom32.a $(LIBGCC)
23 LNXLIBS = ../libutil/libutil_lnx.a
25 MODULES = gdbstub.c32
26 TESTFILES =
28 OBJS = main.o int.o serial.o gdbstub.o
30 all: $(MODULES) $(TESTFILES)
32 gdbstub.elf : $(OBJS) $(LIBS) $(C_LIBS)
33 $(LD) $(LDFLAGS) -o $@ $^
35 tidy dist clean:
36 rm -f *.o *.lo *.a *.lst *.elf .*.d *.tmp
38 clean: tidy
39 rm -f *.lnx
41 spotless: clean
42 rm -f *.lss *.c32 *.com
43 rm -f *~ \#*
45 install:
46 mkdir -m 755 -p $(INSTALLROOT)$(AUXDIR)
47 install -m 644 $(MODULES) $(INSTALLROOT)$(AUXDIR)
49 -include .*.d