Skip to content
Snippets Groups Projects
Commit 7b09f829 authored by Giovanni La Mura's avatar Giovanni La Mura
Browse files

Setup a source/build project structure

parent 7473611a
No related branches found
No related tags found
No related merge requests found
File moved
File moved
FC=gfortran
FCFLAGS=-std=legacy -O3
LFLAGS=
all: frfme lffft
frfme: frfme.o
$(FC) $(FCFLAGS) -o frfme frfme.o $(LFLAGS)
lffft: lffft.o
$(FC) $(FCFLAGS) -o lffft lffft.o $(LFLAGS)
clean:
rm -f *.o
wipe:
rm -f frfme lffft *.o
%.o : %.f
$(FC) $(FCFLAGS) -c -o $@ $<
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment