# Copyright (c) 2004 Jens Vehlhaber # # Creation: 01.05.2004 jv # Last Update: $Id$ # # This is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free # Software Foundation; either version 2, or (at your option) any later # version. # # -Os = Size # -O1...3 = Speed CC = gcc STRIP = strip TARGET = lastfile CFLAGS += -s -fstrength-reduce -Wall OBJS = lastfile.o placeholder.o filedate.o all: $(TARGET) $(STRIP) -R .note -R .comment $(TARGET) lastfile: $(OBJS) $(CC) $(CFLAGS) -o lastfile $(OBJS) lastfile.o: Makefile lastfile.c placeholder.h filedate.h $(CC) $(CFLAGS) -c lastfile.c placeholder.o: Makefile placeholder.h placeholder.c $(CC) $(CFLAGS) -c placeholder.c filedate.o: Makefile filedate.h filedate.c $(CC) $(CFLAGS) -c filedate.c clean: rm -f *~ lastfile *.o core