hex2hcd/Makefile
Wen-chien Jesse Sung ada3e18cd3 Initial import
2012-07-06 18:16:09 +08:00

11 lines
117 B
Makefile

TARGET = hex2hcd
CFLAGS = -O2 -march=native
CC = gcc
all: $(TARGET)
$(TARGET): $(TARGET).c
clean:
-rm $(TARGET)