8 lines
101 B
Makefile
8 lines
101 B
Makefile
|
CC=gcc
|
||
|
OPT=-Wall -std=c11 -g
|
||
|
LIB=-lglpk
|
||
|
|
||
|
all: test
|
||
|
|
||
|
test: test.c test.h
|
||
|
$(CC) $< $(OPT) $(LIB) -o $@
|