CC = powerpc-linux-gcc
STRIP = powerpc-linux-strip
CFLAGS = -O2 -DDM7020_BUILD

all: formhandler_file

formhandler_file: formhandler_file.c
	$(CC) $(CFLAGS) -o formhandler_file formhandler_file.c
	$(STRIP) formhandler_file

clean:
	rm -f formhandler_file formhandler_file.o
