2 Commits
v0.9 ... v0.9.1

Author SHA1 Message Date
Wolfgang Hommel
d8053c280c Reorder linker flags as suggested by Lukas Fleischer 2012-02-05 00:07:54 +01:00
Wolfgang Hommel
b067cdce2b Initialize INSTALL as suggested by Lukas Fleischer 2012-02-05 00:05:46 +01:00
2 changed files with 3 additions and 1 deletions

View File

@@ -1,3 +1,5 @@
INSTALL = install
all:
$(MAKE) -C src all
$(MAKE) -C test all

View File

@@ -69,7 +69,7 @@ ${OBJ}: faketime.c
${CC} -o $@ -c ${CFLAGS} ${EXTRA_FLAGS} $<
lib%.so.${SONAME}: %.o
${CC} -o $@ -Wl,-soname,$@ ${LDFLAGS} $<
${CC} -o $@ -Wl,-soname,$@ $< ${LDFLAGS}
clean:
@rm -f ${OBJ} ${LIBS}