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
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
2019-10-22 13:58:46 +02:00
$(CC) $< $(OPT) $(LIB) -o $@