
CC=g++
CFLAGS=-c
LIBS=

all: glsn-filemodage glsn-filemodtime

install: glsn-filemodage glsn-filemodtime
	install -C glsn-filemodage glsn-filemodtime /usr/local/bin



glsn-filemodtime: glsn-filemodtime.o
	$(CC) $(LIBS) glsn-filemodtime.o -o glsn-filemodtime
glsn-filemodtime.o:
	$(CC) $(CFLAGS) glsn-filemodtime.cpp

glsn-filemodage: glsn-filemodage.o
	$(CC) $(LIBS) glsn-filemodage.o -o glsn-filemodage
glsn-filemodage.o:
	$(CC) $(CFLAGS) glsn-filemodage.cpp
clean:
	rm -f glsn-filemodage.o glsn-filemodage glsn-filemodtime.o glsn-filemodtime

