11 lines
280 B
Makefile
11 lines
280 B
Makefile
# SPDX-FileCopyrightText: 2023 Ämin Baumeler <amin@indyfac.ch> and Eleftherios-Ermis Tselentis <eleftheriosermis.tselentis@oeaw.ac.at>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
CFLAGS = -Wall -Ofast
|
|
|
|
all: SOCgen SOCadmissible SOCgraphviz
|
|
|
|
%: src/%.c
|
|
gcc $(CFLAGS) -o $@ $^
|