Makefile (94B)
1 FILES=endiantest.c 2 CC=gcc 3 OUT=EndianTest 4 5 $(OUT): $(FILES) 6 $(CC) $^ -o $@ 7 8 clean: 9 rm $(OUT)
endiantestA test for endian-ness. Initially used in service of a different project but was made into its own repo |
Log | Files | Refs | README | LICENSE |
Makefile (94B)
1 FILES=endiantest.c 2 CC=gcc 3 OUT=EndianTest 4 5 $(OUT): $(FILES) 6 $(CC) $^ -o $@ 7 8 clean: 9 rm $(OUT)
Generated using stagit (https://codemadness.org/stagit.html)