From fe54842f04004468dfad932226b88e9c37a67c02 Mon Sep 17 00:00:00 2001 From: Kolan Sh Date: Wed, 7 Dec 2011 11:59:27 +0300 Subject: [PATCH] Makefile --- c/time_t_2038/Makefile | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/c/time_t_2038/Makefile b/c/time_t_2038/Makefile index 2eab351..8dc0588 100644 --- a/c/time_t_2038/Makefile +++ b/c/time_t_2038/Makefile @@ -16,7 +16,7 @@ CC=cc CXX=c++ LIBRARIES= -TARGET0=mcstime_test +TARGET0=gmtime TARGET= $(TARGET0) INCLUDE1=$(HOME)/projects/include INCLUDE2=/usr/local/include @@ -91,18 +91,12 @@ clean: # R U L E S | #________________________________| target_objs0 = \ - mcstime_test.o \ - mcstime.o + gmtime.o $(TARGET0): $(target_objs0) $(CC) $(LDFLAGS) -o $@ $(target_objs0) -mcstime_test.o: \ - mcstime_test.c \ - $(INCLUDE1)/mcstime.h - -mcstime.o: \ - $(INCLUDE1)/mcstime.c \ - $(INCLUDE1)/mcstime.h +gmtime.o: \ + gmtime.c