4 CFLAGS := -Wall -DNO_INLINE_STDARG -D__AMIGAOS__ -O2 -m68020
5 LDFLAGS := -noixemul -nostartfiles -s
6 LIBFILE := /libs/partition.library
18 createpartitiontable \
21 getpartitiontableattrs \
22 setpartitiontableattrs \
25 querypartitiontableattrs \
29 CFILES := partitionami_init $(FILES) $(FUNCS)
31 COBJS := $(foreach f, $(CFILES), $(f).o)
32 DEPS := $(foreach f, $(CFILES), $(f).d)
33 #EXTRALIB:= $(shell $(CC) --print-libgcc-file)
35 .PHONY : all depend clean library
42 rm -f *.o *.d $(LIBFILE)
45 $(LD) $(LDFLAGS) $^ $(EXTRALIB) -o $@
48 $(CC) $(CFLAGS) -c $< -o $@
51 $(CC) $(CFLAGS) -M $< -o $@
53 ifeq (,$(filter clean depend,$(TARGET)))