CC=gcc
TARGET=convert
OBJECTS=convert.o
CFLAGS=-std=c99 -O3 -Wall
LDFLAGS=-lm
all: $(TARGET)
$(TARGET): $(OBJECTS)
clean:
rm -rf $(TARGET) $(OBJECTS)