Initial import

This commit is contained in:
Wen-chien Jesse Sung 2012-07-06 18:16:09 +08:00
commit ada3e18cd3
2 changed files with 127 additions and 0 deletions

11
Makefile Normal file
View file

@ -0,0 +1,11 @@
TARGET = hex2hcd
CFLAGS = -O2 -march=native
CC = gcc
all: $(TARGET)
$(TARGET): $(TARGET).c
clean:
-rm $(TARGET)