From 61ad6a74362d7fd4c617006ead3e95da4f6b9c11 Mon Sep 17 00:00:00 2001 From: Joey Schulze Date: Fri, 6 Aug 2004 20:23:30 +0000 Subject: [PATCH] Added support for the 'Begleitzettel' via LaTeX document Moved list of object files into its own variable --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ee70fc5..fb4553e 100644 --- a/Makefile +++ b/Makefile @@ -22,9 +22,10 @@ CC = gcc CFLAGS = -Wall -O3 +OBJS = dtaus.o main.o bigint.o latex.o -dtaus: dtaus.o main.o bigint.o - $(CC) -o dtaus dtaus.o main.o bigint.o +dtaus: $(OBJS) + $(CC) -o dtaus $(OBJS) clean: rm -f *.o dtaus -- 2.20.1