# # f32x/Makefile - Build the C8051F326/7 Flash programmer # # Written 2008, 2010-2011 by Werner Almesberger # Copyright 2008, 2010-2011 Werner Almesberger # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # PREFIX=/usr ifeq ($(TARGET),) TARGET = ben_jlime endif CC_om = arm-angstrom-linux-gnueabi-gcc CC_ben_jlime = mipsel-linux-gcc CC_ben_openwrt = mipsel-openwrt-linux-gcc CFLAGS_om = -O -DDRIVER=c2_om CFLAGS_ben_jlime = -DDRIVER=c2_ben CFLAGS_ben_openwrt = -DDRIVER=c2_ben LDFLAGS_om = LDFLAGS_ben_jlime = LDFLAGS_ben_openwrt = OBJS_om = c2-om.o gpio-s3c24xx.o rt.o OBJS_ben_jlime = c2-ben.o gpio-xburst.o OBJS_ben_openwrt = c2-ben.o gpio-xburst.o UPLOAD_om = ssh lab neo 'cat \>f32x' .depend || \ { rm -f .depend; exit 1; } ifeq (.depend,$(wildcard .depend)) include .depend endif c2-om.o: c2-bitbang.c c2-ben.o: c2-bitbang.c clean: rm -f $(OBJS) $(OBJS_om) $(OBJS_ben) .depend spotless: clean rm -f $(NAME)