Skip to content

Commit

Permalink
oh right it's actually C++
Browse files Browse the repository at this point in the history
  • Loading branch information
NattyNarwhal committed May 8, 2014
1 parent 9938ca5 commit a8d042f
Show file tree
Hide file tree
Showing 14 changed files with 15 additions and 15 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
26 changes: 13 additions & 13 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ CXXFLAGS=@CXXFLAGS@ @XFT_CFLAGS@ @FT_CFLAGS@ @FC_CFLAGS@ -Wall

OBJECTS = Border.o Buttons.o Channel.o Client.o Config.o Events.o Main.o Manager.o Menu.o Rotated.o Session.o

.c.o:
.cpp.o:
$(CCC) -c $(CXXFLAGS) $<

all: wmx
Expand All @@ -30,7 +30,7 @@ wmx: $(OBJECTS)
depend:
-awk '{print;} /^# DO NOT DELETE/{exit}' Makefile>Makefile.dep
test -s Makefile.dep
mv Makefile.dep Makefile;g++ -MM $(CXXFLAGS) *.c>>Makefile
mv Makefile.dep Makefile;g++ -MM $(CXXFLAGS) *.cpp>>Makefile

clean:
rm -f *.o core
Expand All @@ -51,22 +51,22 @@ install-rpm:


# DO NOT DELETE -- make depend depends on it
Border.o: Border.c Border.h General.h Config.h Rotated.h Client.h \
Border.o: Border.cpp Border.h General.h Config.h Rotated.h Client.h \
Manager.h listmacro.h background.xpm
Buttons.o: Buttons.c Manager.h General.h Config.h listmacro.h Client.h \
Buttons.o: Buttons.cpp Manager.h General.h Config.h listmacro.h Client.h \
Border.h Rotated.h Menu.h
Channel.o: Channel.c Manager.h General.h Config.h listmacro.h Client.h \
Channel.o: Channel.cpp Manager.h General.h Config.h listmacro.h Client.h \
Border.h Rotated.h
Client.o: Client.c Manager.h General.h Config.h listmacro.h Client.h \
Client.o: Client.cpp Manager.h General.h Config.h listmacro.h Client.h \
Border.h Rotated.h
Config.o: Config.c Config.h
Events.o: Events.c Manager.h General.h Config.h listmacro.h Client.h \
Config.o: Config.cpp Config.h
Events.o: Events.cpp Manager.h General.h Config.h listmacro.h Client.h \
Border.h Rotated.h
Main.o: Main.c Manager.h General.h Config.h listmacro.h Client.h \
Main.o: Main.cpp Manager.h General.h Config.h listmacro.h Client.h \
Border.h Rotated.h
Manager.o: Manager.c Manager.h General.h Config.h listmacro.h Menu.h \
Manager.o: Manager.cpp Manager.h General.h Config.h listmacro.h Menu.h \
Client.h Border.h Rotated.h Cursors.h
Menu.o: Menu.c Menu.h General.h Config.h Manager.h listmacro.h \
Menu.o: Menu.cpp Menu.h General.h Config.h Manager.h listmacro.h \
Client.h Border.h Rotated.h
Rotated.o: Rotated.c Config.h Rotated.h
Session.o: Session.c Manager.h General.h Config.h listmacro.h
Rotated.o: Rotated.cpp Config.h Rotated.h
Session.o: Session.cpp Manager.h General.h Config.h listmacro.h
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ PACKAGE_STRING=
PACKAGE_BUGREPORT=
PACKAGE_URL=

ac_unique_file="Border.c"
ac_unique_file="Border.cpp"
ac_subst_vars='LTLIBOBJS
LIBOBJS
ac_prefix_program
Expand Down
2 changes: 1 addition & 1 deletion configure.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT(Border.c)
AC_INIT(Border.cpp)

dnl Checks for programs.
AC_PROG_MAKE_SET
Expand Down

0 comments on commit a8d042f

Please sign in to comment.