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

8 lines
101 B
Makefile
Raw Normal View History

2019-10-22 12:34:33 +02:00
CC=gcc
OPT=-Wall -std=c11 -g
LIB=-lglpk
all: test
test: test.c test.h
$(CC) $< $(OPT) $(LIB) -o $@