a4df196ed4
My plan now is to integrate the PseudoConsole with Cygwin and MSYS ptys, with initial focus on Cygwin. I think I'll keep the separate Agent and DLL binaries, and they'll continue to be native Win32 binaries. I don't want to have two build systems (qmake vs whatever MSYS/Cygwin uses), and since I'd like to remove the Qt dependency anyway, I'm trying to switch to makefiles.
13 lines
238 B
Makefile
13 lines
238 B
Makefile
CFLAGS += -MD
|
|
CXXFLAGS += -MD
|
|
|
|
# Use gmake -n to see the command-lines gmake would run.
|
|
|
|
%.o : %.c
|
|
@echo Compiling $<
|
|
@$(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
|
|
|
|
%.o : %.cc
|
|
@echo Compiling $<
|
|
@$(CXX) $(CXXFLAGS) $(CPPFLAGS) -c -o $@ $<
|