all: byteordertest

byteordertest: byteordertest.c
	gcc -Wall -o byteordertest byteordertest.c

clean:

distclean: clean
	rm byteordertest

