SOC-Observation-Code/Makefile

11 lines
280 B
Makefile
Raw Normal View History

2023-05-04 18:10:31 +02:00
# 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
2023-05-04 18:10:31 +02:00
%: src/%.c
2023-05-04 18:10:31 +02:00
gcc $(CFLAGS) -o $@ $^