12 lines
274 B
Makefile
12 lines
274 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
|
||
|
|
||
|
SRC = *.c
|
||
|
CFLAGS = -Wall -Ofast
|
||
|
|
||
|
all: SOCgen SOCadmissible
|
||
|
|
||
|
%: %.c
|
||
|
gcc $(CFLAGS) -o $@ $^
|