openbsd-ports/x11/mterm/patches/patch-Makefile
naddy 11c15dfaa8 Import mterm 0.4.2a.
Submitted by Nick Nauwelaerts <nick@nauwelaerts.net>.

mterm is a small X11 application that lets a user enter commands and
run them without opening a terminal. It can be withdrawn into the
dock/wharf/slit or run in windowed mode.
2003-01-13 18:48:19 +00:00

21 lines
747 B
Plaintext

$OpenBSD: patch-Makefile,v 1.1.1.1 2003/01/13 18:48:19 naddy Exp $
--- Makefile.orig Mon Jan 13 19:33:36 2003
+++ Makefile Mon Jan 13 19:34:12 2003
@@ -23,13 +23,13 @@ OBJECTS := mterm.o
SOURCES := mterm.c
$(TARGET): $(OBJECTS)
- $(CC) $(DEFINES) $(INCLUDES) $(LIB_DIRS) $(LIBS) -o $@ $<
+ $(CC) $(DEFINES) $(INCLUDES) $(LIB_DIRS) $(LIBS) -o $@ $(OBJECTS)
debug: $(SOURCES)
- $(CC) $(DEBUG) $(DEFINES) $(INCLUDES) $(LIB_DIRS) $(LIBS) -o $(TARGET) $<
+ $(CC) $(DEBUG) $(DEFINES) $(INCLUDES) $(LIB_DIRS) $(LIBS) -o $(TARGET) $(SOURCES)
$(OBJECTS): $(SOURCES)
- $(CC) $(FLAGS) $(DEFINES) $(INCLUDES) $(LIB_DIRS) -c -o $@ $<
+ $(CC) $(FLAGS) $(DEFINES) $(INCLUDES) $(LIB_DIRS) -c -o $@ $(SOURCES)
clean:
rm -rf $(TARGET) $(OBJECTS)