mirror of https://gitlab.com/QEF/q-e.git
23 lines
402 B
Makefile
23 lines
402 B
Makefile
# Makefile for PPCG
|
|
|
|
include ../../make.inc
|
|
|
|
# location of needed modules and included files (if any)
|
|
MODFLAGS= $(MOD_FLAG) ../../ELPA/src $(MOD_FLAG) ../../LAXlib $(MOD_FLAG) ../../UtilXlib $(MOD_FLAG).
|
|
|
|
PPCG = \
|
|
ppcg_gamma.o \
|
|
ppcg_k.o
|
|
|
|
all : libppcg.a
|
|
|
|
|
|
libppcg.a: $(PPCG)
|
|
$(AR) $(ARFLAGS) $@ $?
|
|
$(RANLIB) $@
|
|
|
|
clean :
|
|
- /bin/rm -f *.o *.a *.d *.i *~ *_tmp.f90 *.mod *.L *.x
|
|
|
|
include make.depend
|