CC= gcc
CFLAGS=-Wall
#don't try to compile with -O becoz you get idiot asm errors!! maybe needs __asm__ volatile??
IFLAGS=
LDFLAGS=

RM = /bin/rm -rf

all : Change_F_simple

Change_F_simple: Change_F_simple.c 
	$(CC) $(IFLAGS) $(CFLAGS) $(LDFLAGS) Change_F_simple.c -o Change_F_simple 

clean:
	$(RM) *.o Change_F_simple 
