hex2hcd/Makefile

12 lines
117 B
Makefile
Raw Normal View History

2012-07-06 12:16:09 +02:00
TARGET = hex2hcd
CFLAGS = -O2 -march=native
CC = gcc
all: $(TARGET)
$(TARGET): $(TARGET).c
clean:
-rm $(TARGET)