commit
3a1c34f236
@ -0,0 +1,28 @@
|
|||||||
|
# Project: 课程设计:职工工资管理系统
|
||||||
|
# Makefile created by Dev-C++ 5.11
|
||||||
|
|
||||||
|
CPP = g++.exe -D__DEBUG__
|
||||||
|
CC = gcc.exe -D__DEBUG__
|
||||||
|
WINDRES = windres.exe
|
||||||
|
OBJ = main.o
|
||||||
|
LINKOBJ = main.o
|
||||||
|
LIBS = -L"E:/C语言/Dev-Cpp/Dev-Cpp/MinGW64/lib" -L"E:/C语言/Dev-Cpp/Dev-Cpp/MinGW64/x86_64-w64-mingw32/lib" -static-libgcc -g3
|
||||||
|
INCS = -I"E:/C语言/Dev-Cpp/Dev-Cpp/MinGW64/include" -I"E:/C语言/Dev-Cpp/Dev-Cpp/MinGW64/x86_64-w64-mingw32/include" -I"E:/C语言/Dev-Cpp/Dev-Cpp/MinGW64/lib/gcc/x86_64-w64-mingw32/4.9.2/include"
|
||||||
|
CXXINCS = -I"E:/C语言/Dev-Cpp/Dev-Cpp/MinGW64/include" -I"E:/C语言/Dev-Cpp/Dev-Cpp/MinGW64/x86_64-w64-mingw32/include" -I"E:/C语言/Dev-Cpp/Dev-Cpp/MinGW64/lib/gcc/x86_64-w64-mingw32/4.9.2/include" -I"E:/C语言/Dev-Cpp/Dev-Cpp/MinGW64/lib/gcc/x86_64-w64-mingw32/4.9.2/include/c++"
|
||||||
|
BIN = 课程设计:职工工资管理系统.exe
|
||||||
|
CXXFLAGS = $(CXXINCS) -g3
|
||||||
|
CFLAGS = $(INCS) -g3
|
||||||
|
RM = rm.exe -f
|
||||||
|
|
||||||
|
.PHONY: all all-before all-after clean clean-custom
|
||||||
|
|
||||||
|
all: all-before $(BIN) all-after
|
||||||
|
|
||||||
|
clean: clean-custom
|
||||||
|
${RM} $(OBJ) $(BIN)
|
||||||
|
|
||||||
|
$(BIN): $(OBJ)
|
||||||
|
$(CC) $(LINKOBJ) -o $(BIN) $(LIBS)
|
||||||
|
|
||||||
|
main.o: main.c
|
||||||
|
$(CC) -c main.c -o main.o $(CFLAGS)
|
Binary file not shown.
@ -0,0 +1,7 @@
|
|||||||
|
#include "lxhml.h"
|
||||||
|
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
|
||||||
|
|
||||||
|
int main( ) {
|
||||||
|
xitong( );
|
||||||
|
return 0;
|
||||||
|
}
|
@ -0,0 +1,72 @@
|
|||||||
|
[Project]
|
||||||
|
FileName=课程设计:职工工资管理系统.dev
|
||||||
|
Name=课程设计:职工工资管理系统
|
||||||
|
Type=1
|
||||||
|
Ver=2
|
||||||
|
ObjFiles=
|
||||||
|
Includes=
|
||||||
|
Libs=
|
||||||
|
PrivateResource=
|
||||||
|
ResourceIncludes=
|
||||||
|
MakeIncludes=
|
||||||
|
Compiler=
|
||||||
|
CppCompiler=
|
||||||
|
Linker=
|
||||||
|
IsCpp=0
|
||||||
|
Icon=
|
||||||
|
ExeOutput=
|
||||||
|
ObjectOutput=
|
||||||
|
LogOutput=
|
||||||
|
LogOutputEnabled=0
|
||||||
|
OverrideOutput=0
|
||||||
|
OverrideOutputName=
|
||||||
|
HostApplication=
|
||||||
|
UseCustomMakefile=0
|
||||||
|
CustomMakefile=
|
||||||
|
CommandLine=
|
||||||
|
Folders=
|
||||||
|
IncludeVersionInfo=0
|
||||||
|
SupportXPThemes=0
|
||||||
|
CompilerSet=1
|
||||||
|
CompilerSettings=0000000000000000001000000
|
||||||
|
UnitCount=2
|
||||||
|
|
||||||
|
[VersionInfo]
|
||||||
|
Major=1
|
||||||
|
Minor=0
|
||||||
|
Release=0
|
||||||
|
Build=0
|
||||||
|
LanguageID=1033
|
||||||
|
CharsetID=1252
|
||||||
|
CompanyName=
|
||||||
|
FileVersion=
|
||||||
|
FileDescription=Developed using the Dev-C++ IDE
|
||||||
|
InternalName=
|
||||||
|
LegalCopyright=
|
||||||
|
LegalTrademarks=
|
||||||
|
OriginalFilename=
|
||||||
|
ProductName=
|
||||||
|
ProductVersion=
|
||||||
|
AutoIncBuildNr=0
|
||||||
|
SyncProduct=1
|
||||||
|
|
||||||
|
[Unit1]
|
||||||
|
FileName=main.c
|
||||||
|
CompileCpp=0
|
||||||
|
Folder=
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=
|
||||||
|
|
||||||
|
[Unit2]
|
||||||
|
FileName=lxhml.h
|
||||||
|
CompileCpp=0
|
||||||
|
Folder=
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=
|
||||||
|
|
Binary file not shown.
@ -0,0 +1,13 @@
|
|||||||
|
[Editor_0]
|
||||||
|
CursorCol=14
|
||||||
|
CursorRow=4
|
||||||
|
TopLine=1
|
||||||
|
LeftChar=1
|
||||||
|
[Editors]
|
||||||
|
Order=0,1
|
||||||
|
Focused=1
|
||||||
|
[Editor_1]
|
||||||
|
CursorCol=43
|
||||||
|
CursorRow=63
|
||||||
|
TopLine=31
|
||||||
|
LeftChar=1
|
Loading…
Reference in new issue