131f60b6eSwdenk# 2*f9328639SMarian Balakowicz# (C) Copyright 2000-2006 331f60b6eSwdenk# Wolfgang Denk, DENX Software Engineering, wd@denx.de. 431f60b6eSwdenk# 531f60b6eSwdenk# See file CREDITS for list of people who contributed to this 631f60b6eSwdenk# project. 731f60b6eSwdenk# 831f60b6eSwdenk# This program is free software; you can redistribute it and/or 931f60b6eSwdenk# modify it under the terms of the GNU General Public License as 1031f60b6eSwdenk# published by the Free Software Foundation; either version 2 of 1131f60b6eSwdenk# the License, or (at your option) any later version. 1231f60b6eSwdenk# 1331f60b6eSwdenk# This program is distributed in the hope that it will be useful, 1431f60b6eSwdenk# but WITHOUT ANY WARRANTY; without even the implied warranty of 1531f60b6eSwdenk# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 1631f60b6eSwdenk# GNU General Public License for more details. 1731f60b6eSwdenk# 1831f60b6eSwdenk# You should have received a copy of the GNU General Public License 1931f60b6eSwdenk# along with this program; if not, write to the Free Software 2031f60b6eSwdenk# Foundation, Inc., 59 Temple Place, Suite 330, Boston, 2131f60b6eSwdenk# MA 02111-1307 USA 2231f60b6eSwdenk# 2331f60b6eSwdenk 2431f60b6eSwdenkinclude $(TOPDIR)/config.mk 2531f60b6eSwdenk 2631f60b6eSwdenk#CFLAGS += -DET_DEBUG -DDEBUG 2731f60b6eSwdenk 28*f9328639SMarian BalakowiczLIB = $(obj)libdisk.a 2931f60b6eSwdenk 30*f9328639SMarian BalakowiczCOBJS = part.o part_mac.o part_dos.o part_iso.o part_amiga.o 31*f9328639SMarian Balakowicz 32*f9328639SMarian BalakowiczSRCS := $(COBJS:.o=.c) 33*f9328639SMarian BalakowiczOBJS := $(addprefix $(obj),$(COBJS)) 3431f60b6eSwdenk 3531f60b6eSwdenkall: $(LIB) 3631f60b6eSwdenk 37*f9328639SMarian Balakowicz$(LIB): $(obj).depend $(OBJS) 3831f60b6eSwdenk $(AR) crv $@ $(OBJS) 3931f60b6eSwdenk 4031f60b6eSwdenk######################################################################### 4131f60b6eSwdenk 42*f9328639SMarian Balakowicz# defines $(obj).depend target 43*f9328639SMarian Balakowiczinclude $(SRCTREE)/rules.mk 4431f60b6eSwdenk 45*f9328639SMarian Balakowiczsinclude $(obj).depend 4631f60b6eSwdenk 4731f60b6eSwdenk######################################################################### 48