This repository has been archived on 2019-10-23. You can view files and clone it, but cannot push or open issues or pull requests.
aro/makefile

9 lines
102 B
Makefile

CC=gcc
OPT=-Wall -std=c11 -g
LIB=-lglpk
all: test
test: test.c test.h
$(CC) $< $(OPT) $(LIB) -o $@