Commit fce2591a authored by Nikos Nikoloutsakos's avatar Nikos Nikoloutsakos
Browse files

remove Makefile

parent d6605cb5
CC := icc
#CFLAGS := -offload -O3 -openmp
CFLAGS := -no-offload -O3 -openmp
#CFLAGS := -O3 -fopenmp -lm
OBJS := pddp_2means.o
APP := pddp_2means
all: $(APP)
%.o: %.c
$(CC) $(CFLAGS) -c -o $@ $<
$(APP): $(OBJS)
$(CC) $(CFLAGS) -o $@ $<
clean:
rm -f $(OBJS) $(APP)
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment