#	MiscClockPalette Postamble
#	basically lifted from a mini-example
#	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

RELOCATABLE_STRIP_OPTS = -x -u

# 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

lib:
	$(MAKE) libMiscClockView.a

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

