#	MiscArrowButton Makefile.postamble
#	basically lifted from MiscClockView which was
#	basically lifted from a mini-example (TTools, I would guess)
#	this is 3.1 specific, and will enable the building of FAT palletes!

#LIBTOOL = /bin/ar r 		# for 3.0
LIBTOOL = /bin/libtool -o	# for 3.1, 3.2, fat palettes

# Optimization flag passed to compiler:
OPTIMIZATION_CFLAG = -O2 -pipe

COMMON_CFLAGS = $(PROJECT_SPECIFIC_CFLAGS) -Wall  

# Flags passed to compiler in normal 'app' compiles:
NORMAL_CFLAGS = $(COMMON_CFLAGS) $(OPTIMIZATION_CFLAG)

# Flags passed to compiler in normal 'app' compiles:
# old (3.2) way
#NORMAL_CFLAGS = $(OPTIMIZATION_CFLAG) -Wall

libMiscArrowButton.a: $(LIBOFILES)
	$(LIBTOOL) $@ $(LIBOFILES)

