1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-01-31 09:57:14 +01:00

Merge pull request #45 from dracc/makefilefix

Change target order in Makefile
This commit is contained in:
Sandu Liviu Catalin 2019-06-28 19:24:32 +03:00 committed by GitHub
commit aa976c7f89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -144,6 +144,8 @@ ifdef CLEAN
SQ_TARGET += clean
endif
all: folders mod_squirrel mod_sqlite mod_xml mod_mmdb mod_irc mod_mysql
mod_squirrel:
cd $(SQ_BASEDIR)/source; $(SQ_MAKE) $(SQ_TARGET)
@ -189,8 +191,6 @@ clean:
cd $(SQ_MODDIR)/mysql; $(SQ_MAKE) clean
cd source; $(SQ_MAKE) clean
all: folders mod_squirrel mod_sqlite mod_xml mod_mmdb mod_irc mod_mysql
folders:
mkdir -p $(SQ_LIBDIR)
mkdir -p $(SQ_OUTDIR)