From 2c28e4080e000cfe44ad45776162bfc7405b3c43 Mon Sep 17 00:00:00 2001 From: short <> Date: Tue, 5 Dec 2000 15:53:18 +0000 Subject: [PATCH] Prevented compilation through object file. Now it respects specified CFLAGS during compilation. --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index c217400..c02e21e 100644 --- a/Makefile +++ b/Makefile @@ -2,9 +2,8 @@ CFLAGS=-O2 -ggdb -Wall -pedantic -ansi -D_GNU_SOURCE all: timeplan -timeplan: timeplan.o - -timeplan.o: timeplan.c +timeplan: timeplan.c + $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) $(TARGET_ARCH) $(LOADLIBES) $(LDLIBS) -o $@ $< .PHONY: clean clean: -- 1.8.3.1