Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/GAP/pkg/example/   (Algebra von RWTH Aachen Version 4.15.1©)  Datei vom 20.5.2025 mit Größe 345 B image not shown  

Quelle  Makefile.in   Sprache: unbekannt

 
# sample makefile
CC ?= cc
GAPARCH=@GAPARCH@

all: default

default: bin/$(GAPARCH)/hello

bin/$(GAPARCH)/hello: src/hello.c
 mkdir -p bin/$(GAPARCH)
 $(CC) -o bin/$(GAPARCH)/hello src/hello.c $(CFLAGS) $(LDFLAGS)

clean:
 rm -rf bin

distclean: clean
 rm -rf Makefile

doc:
 gap -A -q -T < makedocrel.g

.PHONY: all default clean distclean doc

[ Dauer der Verarbeitung: 0.15 Sekunden  (vorverarbeitet)  ]