1*31f60b6eSwdenk# 2*31f60b6eSwdenk# (C) Copyright 2000 3*31f60b6eSwdenk# Wolfgang Denk, DENX Software Engineering, wd@denx.de. 4*31f60b6eSwdenk# 5*31f60b6eSwdenk# See file CREDITS for list of people who contributed to this 6*31f60b6eSwdenk# project. 7*31f60b6eSwdenk# 8*31f60b6eSwdenk# This program is free software; you can redistribute it and/or 9*31f60b6eSwdenk# modify it under the terms of the GNU General Public License as 10*31f60b6eSwdenk# published by the Free Software Foundation; either version 2 of 11*31f60b6eSwdenk# the License, or (at your option) any later version. 12*31f60b6eSwdenk# 13*31f60b6eSwdenk# This program is distributed in the hope that it will be useful, 14*31f60b6eSwdenk# but WITHOUT ANY WARRANTY; without even the implied warranty of 15*31f60b6eSwdenk# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16*31f60b6eSwdenk# GNU General Public License for more details. 17*31f60b6eSwdenk# 18*31f60b6eSwdenk# You should have received a copy of the GNU General Public License 19*31f60b6eSwdenk# along with this program; if not, write to the Free Software 20*31f60b6eSwdenk# Foundation, Inc., 59 Temple Place, Suite 330, Boston, 21*31f60b6eSwdenk# MA 02111-1307 USA 22*31f60b6eSwdenk# 23*31f60b6eSwdenk 24*31f60b6eSwdenkinclude $(TOPDIR)/config.mk 25*31f60b6eSwdenk 26*31f60b6eSwdenk#CFLAGS += -DET_DEBUG -DDEBUG 27*31f60b6eSwdenk 28*31f60b6eSwdenkLIB = libdisk.a 29*31f60b6eSwdenk 30*31f60b6eSwdenkOBJS = part.o part_mac.o part_dos.o part_iso.o 31*31f60b6eSwdenk 32*31f60b6eSwdenkall: $(LIB) 33*31f60b6eSwdenk 34*31f60b6eSwdenk$(LIB): $(START) $(OBJS) 35*31f60b6eSwdenk $(AR) crv $@ $(OBJS) 36*31f60b6eSwdenk 37*31f60b6eSwdenk######################################################################### 38*31f60b6eSwdenk 39*31f60b6eSwdenk.depend: Makefile $(OBJS:.o=.c) 40*31f60b6eSwdenk $(CC) -M $(CFLAGS) $(OBJS:.o=.c) > $@ 41*31f60b6eSwdenk 42*31f60b6eSwdenksinclude .depend 43*31f60b6eSwdenk 44*31f60b6eSwdenk######################################################################### 45